/* Botón flotante */
.settings-btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    padding: 12px;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 9999;
}

/* Panel */
#settings-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    z-index: 9998;
}

/* Oculto por defecto */
.hidden {
    display: none;
}

/* Opciones */
.setting-option {
    display: block;
    margin-bottom: 12px;
}

/* Botón cerrar */
.close-btn {
    margin-top: 12px;
    width: 100%;
}
