.glass-effect {
  backdrop-filter: blur(10px); /* Эффект размытия заднего фона */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Легкая тень */
}
/* Блок №1 (фиксированный, первоначально прозрачный) */
#rec1304490521 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 997;
    opacity: 0; /* Изначально прозрачный */
    transition: opacity 0.5s ease-in-out; /* Плавный переход прозрачности */
}

/* Блок №2 (без фиксации, изначально видимый) */
#rec1304490091 {
    z-index: 998;
    opacity: 1; /* Изначально видимый */
    transition: opacity 0.5s ease-in-out; /* Плавный переход прозрачности */
}

/* Блок №3 (фиксированный, всегда видимый) */
#rec1304489311 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    opacity: 1; /* Всегда видимый */
}

#rec1304761471 {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1001; /* Приоритет отображения */

}


.search-container {
    position: relative;
    display: inline-block;
    width: 311px;
    height: 45px;
    line-height: 45px;
    border-radius: 14px;
    background-color: white;
    padding-left: 10px;
    vertical-align: middle;
    overflow: hidden; /* Избегаем вылета текста */
}

.search-container input[type="search"] {
    width: calc(100% - 40px); /* Оставляем место для крестика */
    height: inherit;
    border: none;
    outline: none;
    font-size: 1em;
    color: black;
    background-color: transparent;
    padding-right: 40px; /* Оставляем место для крестика */
}

.search-container input::placeholder {
    color: #CCCCCC; /* Светлый цвет плейсхолдера */
}

/* Крестик очистки */
.clear-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #CCCCCC;
    font-size: 16px;
    user-select: none;
    pointer-events: none; /* Скрыт по умолчанию */
}

.search-container input:focus ~ .clear-icon {
    pointer-events: auto; /* Доступен при фокусе */
}

.search-container input[value=""] ~ .clear-icon {
    display: none; /* Скрывается, если поле пустое */
}

.search-container input[value]:not([value=""]) ~ .clear-icon {
    display: block; /* Показывается, если есть текст */
}



.uc-menu2 {
    position: fixed;
    top: 0; /* Фиксируем блок сверху */
    left: 0; /* Выравниваем по левому краю */
    width: 100%; /* Задаем ширину блока */
    background-color: ; /* Фоновый цвет (по желанию) */
    z-index: 1000; /* Повышаем приоритет отображения */
}


/* Базовый стиль календаря */
.calendar-container {
    width: 373px;
    height: 236px;
    overflow: hidden;
    background-color: transparent;
    font-family: Arial, Helvetica, sans-serif; /* Меняем шрифт на Arial */
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

#month-year {
    font-size: 16px;
    color: white;
    text-align: center;
}

#calendar-table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
    background-color: transparent;
}

#calendar-table th,
#calendar-table td {
    padding: 5px;
    text-align: center;
    background-color: transparent;
    color: white;
    border: none;
}

/* Красный кружок для праздников */
td.holiday::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; /* размещаем кружок снизу и по центру */
    transform: translateX(-50%); /* центрирование по оси X */
    width: 20px; height: 20px;
    border-radius: 50%;
    background-color: red;
    display: inline-block;
    z-index: 1;
}

/* Обычное положение даты внутри клетки */
td.holiday span {
    position: static; /* возвращаем обычную позицию текста */
    color: white;
    font-weight: bold;
}

/* Убираем всплывающие подсказки */
td.holiday::after {
    display: none; /* скрываем абсолютно все подсказки */
}