.valubles-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.valubles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.filters-form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.filters-form input,
.filters-form select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.filters-form input {
    width: 200px;
}

.filters-form select {
    width: 150px;
}

.filters-button {
    padding: 5px 15px;
    font-size: 14px;
    margin: 0;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.3;
    table-layout: fixed;
}

.stats-table th {
    background: #f0f0f0;
    padding: 8px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.stats-table td {
    padding: 4px 6px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stats-table th:nth-child(1) { width: 15%; }
.stats-table th:nth-child(2) { width: 20%; }
.stats-table th:nth-child(3) { width: 12%; }
.stats-table th:nth-child(4) { width: 53%; }

.session-gap td {
    border-bottom: none;
    padding: 4px 6px;
    background: transparent;
}

.empty-row td {
    padding: 20px;
    text-align: center;
    color: #999;
}


.stats-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;  /* фиксированная ширина колонок */
}

.stats-table th,
.stats-table td {
    padding: 6px 8px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Распределение ширины колонок */
.stats-table th:nth-child(1) { width: 20%; }  /* пользователь */
.stats-table th:nth-child(2) { width: 20%; }  /* email */
.stats-table th:nth-child(3) { width: 15%; }  /* дата */
.stats-table th:nth-child(4) { width: 35%; }  /* шкала */
.stats-table th:nth-child(5) { width: 10%; }  /* сумма */


.session-separator td {
    border-bottom: none;
    padding: 6px 8px;  /* такой же padding, как у обычных строк */
    background: transparent;
}

.question-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.checkbox-cell {
    flex: 0 0 25px;
}

.question-cell {
    flex: 1;
}