.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000; /* Оставляем высокий z-index для футера */
    padding: 10px;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
    text-align: center;
}


.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-btn {
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    transition: background 0.3s ease;
    background: #F9F9F9;
    color: black;
    border: 1px solid #b3b3b3;
    border-radius: 10px;
}

.footer-btn:hover {
    background: #cfcfcf;
}

.gradient-btn {
    background: linear-gradient(to right, #ff69b4, #F9F9F9);
    color: black;
    border: 1px solid #b3b3b3;
    border-radius: 10px;
}

.gradient-btn:hover {
    background: linear-gradient(to right, #ff1493, #F9F9F9);
}

.dropdownFooter-content {
    display: none;
    position: absolute;
    bottom: 100%; /* Нижняя граница меню примыкает к верхней границе кнопки */
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    /* z-index: 1001;*/
    z-index: 2000; /* Выше mode-toggle-button */
    padding: 5px;
}

.extra-space {
    height: 100px;
    background-color: white;
}