.table-container a {
    text-decoration: underline;
}

.table-container {
    background-color: var(--white);
    padding: 0;
    overflow-y: auto;
}

.table-container .full-width {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.table-list td {
    text-align: left;
    padding: 20px;
    border-bottom: 1.5px dashed var(--light-gray);
    position: relative;
    font-weight: 500;
}

.table-list td a {
    text-decoration: underline;
    font-weight: 600;
}

.table-header-titles th {
    padding: 17px 10px 17px 20px;
    color: var(--blue);
    font-size: 13px;
    background-color: var(--white3);
    position: relative;
    text-align: left;
}

.table-header-titles th:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 0;
    height: 50%;
    width: 1.5px;
    background-color: var(--light-gray);
}

/* tr:first-child th:first-child:empty + th { border-top-left-radius: 30px; }
tr:first-child th:last-child:empty + th:empty + th { border-top-right-radius: 30px; }
tr:last-child th:first-child:empty + th { border-bottom-left-radius: 30px; }
tr:last-child th:last-child:empty + th:empty + th { border-bottom-right-radius: 30px; }
tr:first-child th:first-child:not(:empty) { border-top-left-radius: 30px; }
tr:first-child th:last-child:not(:empty) { border-top-right-radius: 30px; }
tr:last-child th:first-child:not(:empty) { border-bottom-left-radius: 30px; }
tr:last-child th:last-child:not(:empty) { border-bottom-right-radius: 30px; }
th:empty { background-color: var(--white); visibility: hidden; border: none; } */


tr:first-child th:first-child { border-top-left-radius: 30px; }
tr:first-child th:last-child { border-top-right-radius: 30px; }
tr:last-child th:first-child { border-bottom-left-radius: 30px; }
tr:last-child th:last-child { border-bottom-right-radius: 30px; }

.table-list tr:first-of-type:has(td:first-child a) {
    background-color: var(--white);
}

.table-list tr:first-of-type:has(td:first-child a) td:first-child {
    border-top-left-radius: 30px;
}

.table-list tr:first-of-type:has(td:first-child a) td:last-child {
    border-top-right-radius: 30px;
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 1%;
}

.table-eye-icon, .table-edit-icon, .table-trophy-icon, .table-delete-icon {
    cursor: pointer;
    color: var(--dark-blue);
    margin-right: 8px;
    font-size: 14px;
}

.table-eye-icon:hover, .table-trophy-icon:hover, .table-edit-icon:hover, .table-delete-icon:hover {
    color: var(--dark-gray);
}

.table-company-contacts i, .table-company-opportunities i {
    color: var(--gray);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

@media (max-width: 1000px) {
    .table-container {
        padding: 0;
        background-color: transparent;
        box-shadow: none;
    }

    .table-list tr {
        padding: 10px;
    }

    .table-actions {
        justify-content: center;
    }
}
