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

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

/* Таблица личных данных */
.personal-table {
    width: 100%;
    max-width: 600px;
    margin: 20px 0;
    border-collapse: collapse;
}

.personal-table td {
    padding: 4px 0;
    vertical-align: middle;
}

.label-cell {
    white-space: nowrap;
    padding-right: 20px;
    font-weight: 500;
    width: 1%;
}

.field-cell input {
    width: 100%;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Список вопросов */
.questions-list {
    margin: 20px 0;
}

.question-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.question-cell {
    flex: 1;
    font-size: 15px;
    line-height: 1.3;
}

.radio-cell {
    flex: 0 0 auto;
}

.radio-cell .horizontal-radios {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-cell .horizontal-radios div {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Кнопка отправки */
button[type="submit"] {
    padding: 12px 20px;
    background: linear-gradient(135deg, #202E56 0%, #202E56 20%, #00747D);
    color: #FFDF70;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Comfortaa', sans-serif;
    margin-top: 15px;
}

/* Таблица результатов теста */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    table-layout: fixed;  /* фиксированная ширина */
}

.results-table th,
.results-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Распределение ширины колонок */
.results-table th:nth-child(1),
.results-table td:nth-child(1) {
    width: 50%;  /* шкала — половина таблицы */
}

.results-table th:nth-child(2),
.results-table td:nth-child(2) {
    width: 20%;  /* сумма баллов */
}

.results-table th:nth-child(3),
.results-table td:nth-child(3) {
    width: 30%;  /* уровень */
}

.results-table th {
    background-color: #f2f2f2;
    font-weight: 600;
}

/* Легенда (интерпретация) */
.legend-block {
    margin-top: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.legend-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.legend-table th,
.legend-table td {
    padding: 12px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.legend-table th {
    background-color: #f2f2f2;
    text-align: center;
}

/* Распределение ширины в легенде */
.legend-table th:nth-child(1),
.legend-table td:nth-child(1) {
    width: 40%;  /* шкала с описанием */
}

.legend-table th:nth-child(2),
.legend-table td:nth-child(2),
.legend-table th:nth-child(3),
.legend-table td:nth-child(3),
.legend-table th:nth-child(4),
.legend-table td:nth-child(4) {
    width: 20%;  /* три колонки с диапазонами */
}

.scale-desc {
    font-size: 0.9em;
    color: #555;
    margin-top: 8px;
    line-height: 1.4;
}