﻿#btnLayoutSwitch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background-color: transparent;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    #btnLayoutSwitch:hover {
        transform: scale(1.1);
    }

/* 🔸 Responsivo: ajusta posición y tamaño en pantallas pequeñas */
@media (max-width: 992px) {
    #btnLayoutSwitch {
        top: auto;
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 18px;
        background-color: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(6px);
    }
    #abre{
        display:none!important;
    }
}

@media (max-width: 576px) {
    #btnLayoutSwitch {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
        background-color: rgba(0, 0, 0, 0.2);
    }
    #abre {
        display: none !important;
    }
}
