:root {
    --primary: #4e91fd;
    --primary-dark: #9f7af6;
    --secondary: #7ba3d1;
}

.table-wrapper {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 10vh;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed
}

thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

th {
    text-align: center;
    padding: 18px 15px;
    color: white;
    font-weight: 600;
    font-size: 1.0rem;
}

tbody tr {
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #e5e7eb;
}

tbody tr:hover {
    background-color: #f7fafc;
}

tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

td {
    text-align: center;
    padding: 16px 15px;
    color: #374151;
    font-size: 1rem;
}

td:first-child {
    font-weight: 600;
    color: #1f2937;
}

tbody tr:last-child {
    border-bottom: none;
}

.price {
    font-weight: 500;
    color: #374151;
}

#dop_usl > table > tbody > * > td:nth-child(1)
{
    text-align: left;
    width: 60%;
}
#dop_usl > table {
    table-layout: auto;
    width: 100%;
}

@media (max-width: 768px) {
       .table-wrapper {
        overflow-x: auto;
        border-radius: 6px;
    }

    table {
        min-width: 550px;
    }

    th, td {
        padding: 12px 10px;
    }
}