/* Table Styles */
.responsive-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}
.compact-table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap; /* Запрещаем перенос текста */
}
.compact-table thead th {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 500;
    position: sticky;
    top: 0;
}
.compact-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e3e6f0;
    vertical-align: top;
}
.compact-table tbody tr:last-child td {
    border-bottom: none;
}
.compact-table tbody tr:hover {
    background-color: #f8f9fc;
}
/* Автоматическая ширина столбцов */
.compact-table {
    table-layout: auto;
}
.compact-table th, .compact-table td {
    min-width: 50px; /* Минимальная ширина столбца */
}