/* Основные настройки шрифтов и фона */
body.publicSurvey {
    background-color: #f4f7f2;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #31262C;
    margin: 0;
    padding: 20px;
}

.publicSurvey .custom-form {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(49, 38, 44, 0.05);
    margin-left:0;
}

/* Сетка полей */
.publicSurvey .field-wrapper {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.publicSurvey .field-wrapper:last-child {
    border-bottom: none;
}

/* Заголовки вопросов */
.publicSurvey .field-label {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #38634F;
}

.publicSurvey .required-sign {
    color: #FB6322;
    margin-left: 4px;
}

/* Описания (подсказки) */
.publicSurvey .field-description-block {
    font-size: 14px;
    color: #7FB663;
    margin-top: 10px;
    font-style: italic;
}

/* Стилизация текстовых полей */
.publicSurvey textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    resize: vertical;
    box-sizing: border-box;
}

.publicSurvey textarea:focus {
    outline: none;
    border-color: #7FB663;
}

/* Контейнер для радио-кнопок (шкала 1-10) */
.publicSurvey .field-input-block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    input {
        display: none;
    }
}

/* Базовая стилизация меток радиокнопок */
.publicSurvey .field-input-block label {
    display: flex!important;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
}

.publicSurvey .field-input-block label:hover {
    background: #7FB663;
    color: #fff;
    border-color: #7FB663;
}

/* Прячем дефолтный инпут внутри label */
.publicSurvey .field-input-block input[type="radio"] {
    margin-right: 8px;
    accent-color: #3F725A;
}

/* Кнопка отправки */
.publicSurvey .btn-send {
    display: block;
    width: 100%;
    background-color: #FB6322;
    color: #FFFFFF;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 350px;
    margin-top: 25px;
}

.publicSurvey .btn-send:hover {
    background-color: #3F725A;
    transform: translateY(-2px);
}

.publicSurvey .btn-send:active {
    transform: translateY(0);
}

/* Сообщение после отправки */
.publicSurvey .after-send-text {
    text-align: center;
    padding: 20px;
    background: #7FB663;
    color: white;
    border-radius: 8px;
    margin-top: 20px;
}