/* ==========================================================================
   11. MÓDULO: KIOSCO (Login & Interfaz Touch)
   ========================================================================== */

/* Contenedor principal del Kiosco */
.kiosco-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Encabezado de la tienda */
.kiosco-header-card {
    background: white;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Tarjeta de Usuario Seleccionable */
.kiosco-user-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.kiosco-user-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.kiosco-user-card:active {
    transform: scale(0.98);
}

/* Avatar del Usuario */
.kiosco-avatar-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    padding: 4px;
    border: 2px solid var(--border-color);
    background: white;
    transition: border-color 0.2s;
}

.kiosco-user-card:hover .kiosco-avatar-wrapper {
    border-color: var(--primary);
}

.kiosco-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Textos de la tarjeta */
.kiosco-name {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.kiosco-role {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* --- MODAL Y TECLADO NUMÉRICO --- */

/* Input del PIN (Visor) */
.kiosco-pin-display {
    background: var(--bg-body);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-btn);
    font-size: 3rem;
    text-align: center;
    letter-spacing: 1.5rem; /* Separa los puntos o números */
    color: var(--primary);
    font-weight: 700;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-family: monospace; /* Para que los asteriscos se vean centrados */
}

.kiosco-pin-display:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
}

/* Grilla del teclado */
.kiosco-numpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 320px;
    margin: 0 auto;
}

/* Botones del teclado */
.btn-numpad {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 600;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.1s;
    cursor: pointer;
}

.btn-numpad:hover {
    background-color: var(--bg-body);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-numpad:active {
    background-color: var(--primary);
    color: white;
    transform: scale(0.95);
    box-shadow: none;
}

/* Botones de acción del teclado */
.btn-numpad-clear {
    color: var(--danger);
    font-size: 1.5rem;
}
.btn-numpad-enter {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-numpad-enter:hover {
    background-color: var(--primary-hover);
    color: white;
}


/* ==========================================================================
   12. MÓDULO: KIOSCO DASHBOARD (Pantalla Principal del Empleado)
   ========================================================================== */

.dashboard-kiosco-header {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid var(--success); /* Barra verde de éxito al loguear */
    border: 1px solid var(--border-color); /* Borde sutil para consistencia */
    border-left-width: 5px; /* Asegura que el borde izquierdo sea grueso */
}

.kiosco-welcome-text {
    color: var(--primary);
    margin-bottom: 0;
    font-family: var(--font-title);
    font-weight: 700;
}

.kiosco-welcome-role {
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: var(--font-ui);
}

/* Grilla de acciones grandes */
.kiosco-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* Tarjeta de Acción (Botón Gigante) */
.kiosco-action-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px; /* Altura mínima para uniformidad visual */
    position: relative;
    overflow: hidden;
}

.kiosco-action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
    color: var(--primary);
}

/* Icono dentro de la tarjeta */
.kiosco-action-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary); /* Por defecto gris */
    transition: color 0.2s;
}

/* Colores específicos para iconos al hacer hover (opcional, o usa variables) */
.kiosco-action-card:hover .kiosco-action-icon {
    color: var(--primary);
}

/* Variaciones de color por tipo de tarjeta (Si quieres diferenciarlas) */
.icon-type-info { color: var(--info) !important; }
.icon-type-warning { color: var(--warning) !important; }
.icon-type-success { color: var(--success) !important; }
.icon-type-primary { color: var(--primary) !important; }

/* Título de la acción */
.kiosco-action-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Badge o Etiqueta (Ej: "2 Nuevos") */
.kiosco-action-badge {
    background: var(--danger);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 8px;
    font-family: var(--font-ui);
    box-shadow: var(--shadow-sm);
}

/* Temporizador de inactividad */
.kiosco-idle-timer {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2.5rem;
    font-family: var(--font-ui);
    opacity: 0.8;
}


/* Ajuste de Teaser de Noticia (Vista Anónima) */
.news-teaser-container {
    min-height: auto; /* Evita el alto desproporcionado */
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.news-teaser-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Fix para Botones con Texto Invisible */
.btn-primary, .btn-login-hero {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important; /* Texto Blanco */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* --- 1. CONFIGURACIÓN ESTRUCTURAL (EL PADRE) --- */
html {
    height: 100%;
}

body {
    /* Esto es vital: El cuerpo ocupa al menos el 100% de la pantalla */
    min-height: 100vh;
    /* Pero si el contenido es mayor, el cuerpo crece automáticamente */
    height: auto !important;
    
    /* Configuración Flexbox Vertical */
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* --- 2. EL CONTENIDO (EL HIJO QUE CRECE) --- */
/* Apuntamos directamente a la etiqueta 'main' para que funcione en TODAS las páginas */
main {
    /* flex-grow: 1 -> Empuja al footer hacia abajo */
    /* flex-shrink: 0 -> No permite que el contenido se aplaste */
    /* flex-basis: auto -> Tamaño natural */
    flex: 1 0 auto;
    
    width: 100%;
    position: relative;
}

/* --- 3. EL FOOTER (EL HIJO ESTÁTICO) --- */
.footer-custom {
    flex-shrink: 0; /* Evita que el footer se encoja */
    width: 100%;
    position: relative !important; /* IMPORTANTE: Nunca fixed */
    margin-top: auto; /* Técnica de seguridad extra */
    z-index: 10;
    
    /* Tus estilos visuales */
    background-color: #1a1d20;
    color: #adb5bd;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    font-family: var(--font-ui);
}



/* Estilos de la Caja de Teaser (Vista Anónima) */
.news-teaser-box {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 3rem !important;
    margin: 2rem auto !important;
    max-width: 800px;
    /* ELIMINAR CUALQUIER height: 100% que pueda existir */
    height: auto !important; 
    min-height: auto !important;
    box-shadow: var(--shadow-md);
}

.news-teaser-text p {
    font-style: italic;
    font-family: var(--font-ui);
}

/* Fix de Color del Botón Iniciar Sesión */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important; /* Fuerza el color de letra a blanco */
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    color: #ffffff !important;
}







/* Limita el alto de la noticia teaser para evitar el descuadre visual */
.news-teaser-box {
    max-width: 800px;
    margin: 2rem auto;
    padding: 3rem !important;
    min-height: auto !important; /* Evita que crezca proporcionalmente a la pantalla */
}



.progress {
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    transition: width 1s ease-in-out; /* Animación suave al cargar */
}

.results-container {
    max-height: 200px;
    overflow-y: auto; /* Por si hay muchas opciones */
}


/* Animación sutil para llamar la atención en el Kiosco */
@keyframes pulse-subtle {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
.pulse-subtle {
    animation: pulse-subtle 3s infinite ease-in-out;
}

/* Grilla de noticias compacta para el Hub de Tienda */
.kiosco-container .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

/* Ajuste del PIN display para que no se vea como un input de texto normal */
.kiosco-pin-display {
    border: none;
    background: #f8f9fa;
    color: var(--primary);
    font-size: 2.5rem;
    letter-spacing: 1rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-btn);
}

/* Grilla de noticias en modo Kiosco */
.kiosco-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.kiosco-news-card {
    position: relative;
    height: 180px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.kiosco-news-card:hover {
    transform: translateY(-5px);
}

.kiosco-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kiosco-news-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ececec, #f9f9f9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2rem;
}

/* El degradado sobre la imagen para que el texto sea legible */
.kiosco-news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
}

.kiosco-news-overlay h6 {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-size: 0.9rem;
}


.kiosco-profile-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-item-horizontal {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.2s;
}

.news-item-horizontal:hover { background: #f8f9fa; }

.news-img-box {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.news-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* Para que la entrada de PIN acepte teclado físico */
.kiosco-pin-display:focus {
    box-shadow: none;
    border-color: var(--primary);
    background: white;
}


.hover-light:hover {
    background-color: #fff9e6;
    transform: translateX(5px);
}
.transition-all {
    transition: all 0.3s ease;
}
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}


/* Ajuste para iconos de humor en monitor 22" */
.mood-option .mood-btn {
    width: 48px !important; /* Ajustado para que 5 quepan en col-4 */
    height: 48px !important;
    font-size: 1.4rem !important;
    padding: 0 !important;
    margin: 2px !important;
}

/* Fix para noticia sin foto */
.news-placeholder-mini {
    background: #f0f2f5;
    color: #adb5bd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    height: 100%;
}



.kiosco-mini-widget .progress {
    height: 8px !important; /* Barras de resultados más visibles */
}

/* Indicador de pendientes en la ficha del vendedor */
.profile-badge-notify {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--bs-danger);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}


/* Grilla del Teclado Numérico */
.kiosco-numpad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 350px;
    margin: 0 auto;
}

.btn-numpad {
    height: 80px;
    font-size: 2rem;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    background-color: white;
    color: var(--primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.1s ease;
}

.btn-numpad:active {
    transform: scale(0.95);
    background-color: var(--primary);
    color: white;
}

.btn-numpad-danger { color: #dc3545; }
.btn-numpad-secondary { color: #6c757d; }

/* Efecto visual al presionar con teclado físico */
.btn-numpad.active-key {
    background-color: var(--primary);
    color: white;
    transform: scale(0.95);
}

/* Estilo para cumpleañeros de HOY */
.birthday-today-highlight {
    background: linear-gradient(135deg, var(--bs-warning) 0%, #ffc107 100%);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transform: scale(1.02);
    border: 2px solid white;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

/* Badge de fecha */
.date-badge {
    box-shadow: var(--shadow-sm);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}


/* Animación de rebote para notificaciones */
@keyframes bounce-subtle {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -60%) scale(1.1); }
}
.animate-bounce {
    animation: bounce-subtle 2s infinite ease-in-out;
}


/* Contenedor de la grilla de usuarios */
.kiosco-grid {
    display: grid;
    /* Forzamos 5 columnas de igual tamaño */
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px; /* Espacio entre tarjetas */
    width: 100%;
}

@media (max-width: 1600px) {
    .kiosco-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columnas en monitores medianos */
    }
}

@media (max-width: 1200px) {
    .kiosco-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas en laptops */
    }
}



/* Tarjeta del Usuario */
.kiosco-profile-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 15px 20px;
    
    /* Flexbox para alinear avatar y texto horizontalmente */
    display: flex; 
    align-items: center;
    gap: 15px;
    
    /* Dimensiones y Transiciones */
    min-height: 90px; /* Altura mínima para que no se vea aplastada */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    
    /* CRÍTICO PARA LA BURBUJA ROJA */
    position: relative; 
    overflow: visible !important; /* Permite que la burbuja salga del borde */
    margin-top: 10px; /* Espacio extra arriba para la burbuja */
    margin-right: 10px; /* Espacio extra a la derecha */
}

.kiosco-profile-card:active {
    transform: scale(0.98);
    background-color: #f8f9fa;
}

/* Estilo del Avatar (Letra o Foto) */
.profile-avatar-mini {
    width: 50px;
    height: 50px;
    flex-shrink: 0; /* Evita que se aplaste */
    border-radius: 12px;
    overflow: hidden;
}

.profile-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-letter {
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Texto */
.profile-info-mini {
    flex-grow: 1; /* Ocupa el espacio restante */
    overflow: hidden; /* Para que el truncate funcione */
}

/* Ajuste de la Burbuja Roja */
.badge-notification {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(30%, -30%); /* La mueve hacia la esquina exterior */
    z-index: 10;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}


/* --- ESTILOS DASHBOARD KIOSCO (NIVEL 2) --- */

/* Contenedor de la Tarjeta del Módulo */
.card-module {
    display: block;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #eef0f2;
    height: 320px; /* Altura fija para uniformidad en monitores grandes */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
    position: relative;
}

/* Estado ACTIVO (Hover y Click) */
.active-module:hover {
    transform: translateY(-10px); /* Efecto de elevación */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--bs-primary);
    cursor: pointer;
}

/* Iconos Circulares Grandes */
.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.active-module:hover .icon-circle {
    transform: scale(1.1); /* El icono crece un poco al pasar el mouse */
}

/* Estado DESHABILITADO (Próximamente) */
.disabled-module {
    background-color: #f9fafb;
    border-color: #f0f0f0;
    cursor: not-allowed; /* Muestra prohibido al pasar mouse */
    opacity: 0.9;
}

.disabled-module .grayscale {
    filter: grayscale(100%);
    opacity: 0.5;
}

/* Etiqueta "Próximamente" en diagonal o flotante */
.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Animación de entrada suave */
.fade-down {
    animation: fadeDown 0.6s ease-out forwards;
}
.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- ESTILOS DASHBOARD KIOSCO (NIVEL 2) --- */

/* Base de la Tarjeta */
.card-module {
    display: block;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eef0f2;
    height: 340px; /* Altura fija para que se vean uniformes */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    position: relative;
}

/* Estado ACTIVO (Hover y Click) */
.active-module:hover {
    transform: translateY(-8px); /* Elevación suave */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); /* Sombra más fuerte al pasar mouse */
    border-color: var(--bs-primary);
    cursor: pointer;
}

/* Iconos */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: transform 0.3s ease;
}

.active-module:hover .icon-circle {
    transform: scale(1.1);
}

/* Estado DESHABILITADO (Gris y Bloqueado) */
.disabled-module {
    background-color: #f8f9fa; /* Fondo gris claro */
    border-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.85;
}

.disabled-module .grayscale {
    filter: grayscale(100%);
    opacity: 0.4;
}

/* Etiqueta Próximamente */
.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Animaciones de Entrada */
.fade-down { animation: fadeDown 0.6s ease-out forwards; }
.fade-up { animation: fadeUp 0.8s ease-out forwards; }

    to { opacity: 1; transform: translateY(0); }
}
/* Botón flotante para salir (Hover) */
.hover-scale:hover {
    transform: scale(1.05);
}


/* Estilo para opciones del Widget */
.widget-opt {
    transition: all 0.2s;
    padding: 10px 15px;
    border-radius: 12px !important;
}
.widget-opt:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}
.btn-check:checked + .widget-opt {
    background-color: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
    transform: scale(1.02);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


