/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
/* Изменение цвета иконки ri-asterisk (обязательные поля) */
.ri-asterisk::before {
    color: #ff0000 !important; /* Красный цвет */
}

h1.group-title {
    font-size: 1.5em !important; /* или любое другое значение: 18px, 1.2rem и т.д. */
}

.survey-name {
    font-family: "Trebuchet MS", Helvetica, Arial, sans-serif !important;
    font-size: 2.25rem !important;       /* было ~2.5rem → стало ~1.25rem */
    font-weight: 600 !important;         /* сохраняем читаемость */
    line-height: 1.3 !important;
    margin-top: 0 !important;
}

/* Уменьшение вертикальных отступов между вопросами */
.ls-question {
    margin-bottom: 8px !important;
}

/* Сжатие внутренних отступов внутри вопросов */
.question-wrapper,
.panel {
    padding: 0.6rem !important;
}

/* Уменьшение отступов между вариантами ответов */
.ls-answers {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.ls-answers .ls-answer {
    margin-bottom: 4px !important;
}

/* Сжатие текста вопроса */
.ls-question-text {
    margin-bottom: 0.4rem !important;
    font-size: 1.05rem !important;
}

/* Уменьшение отступов у комментариев */
.ls-comment {
    margin-top: 0.3rem !important;
    padding: 0.4rem !important;
}

/* Уменьшение отступов у обязательных полей */
.mandatory,
.ls-label-mandatory {
    margin-bottom: 0.2rem !important;
}

/* Уменьшение отступов у кнопок навигации */
.ls-button-wrapper {
    margin-top: 0.8rem !important;
    gap: 0.6rem !important;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .ls-question {
        margin-bottom: 6px !important;
    }
    
    .question-wrapper,
    .panel {
        padding: 0.4rem !important;
    }
    
/*
