/* Стили кнопки переключения */
#rfm-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    padding: 10px 15px;
    background: #23282d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: sans-serif;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background 0.3s;
}

#rfm-toggle-btn.active {
    background: #008455;
}

/* Стили затемняющих шторок */
.rfm-overlay {
    position: fixed;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Цвет и плотность тонирования */
    z-index: 999998;
    pointer-events: none; /* Пропускает клики сквозь себя на сайт */
    opacity: 0;
    transition: opacity 0.3s ease; /* Плавность появления самой вуали при включении */
    display: none;
}

body.rfm-active .rfm-overlay {
    display: block;
    opacity: 1;
}

#rfm-overlay-top { 
    top: 0; 
}

#rfm-overlay-bottom { 
    bottom: 0; 
}

