/* Плавная прокрутка для всех якорных ссылок */
html {
  scroll-behavior: smooth !important;
}

/* Дополнительные настройки для красоты */
/* Можно настроить скорость прокрутки */
html {
  scroll-behavior: smooth !important;
  scroll-padding-top: 20px; /* Отступ сверху при прокрутке */
}

/* Стили для анимированного подчеркивания */
.animated-underline {
    position: relative;
    color: #333; /* Исходный цвет текста */
    text-decoration: none !important;
    cursor: pointer;
    transition: color 0.3s ease !important;
    padding-bottom: 2px; /* Отступ для подчеркивания */
}

/* Подчеркивание */
.animated-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #365FF8;
    transition: width 0.4s ease !important;
}

/* Анимация при наведении */
.animated-underline:hover {
    color: #365FF8 !important;
}

.animated-underline:hover::after {
    width: 100%;
}

/* Активное состояние (при нажатии) */
.animated-underline:active {
    color: #2a4cd6 !important;
}

.animated-underline:active::after {
    background-color: #2a4cd6;
}

/* Базовые стили для всех интерактивных групп */
.t-group {
    position: relative;
    transition: all 0.3s ease;
}

/* Верхняя группа - меньший z-index */
.upper-group {
    z-index: 20;
}

/* Раскрывающийся контент верхней группы */
.upper-content {
    z-index: 25;
    position: relative;
}

/* Нижние группы и кнопки - больший z-index чтобы всегда быть кликабельными */
.zlower-group {
    z-index: 9999;
    position: relative;
}

.zlower-buttons {
    z-index: 100;
    position: relative;
}

/* Специфические стили для состояний анимации */
.group-expanded {
    z-index: 30;
}

.group-collapsed {
    z-index: 10;
}