/* =========================================
   VARIABLES GLOBALES (Para todo el sistema)
   ========================================= */
:root {
    --primary-bg-brown: #72625b; 
    --login-box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    --mundial-red: #e53935; 
    --input-yellow-bg: #fffde7; 
}

/* Transición suave para ocultar el parpadeo de carga */
body {
    animation: fadeInPage 0.25s ease-in-out;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================
   REGLAS GLOBALES DE TIPOGRAFÍA (Blindaje)
   ========================================= */
* {
    /* Esto asegura que las fuentes sean suaves y nítidas */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    /* La fuente base para todo el sistema será Poppins */
    font-family: 'Poppins', sans-serif; 
}

h1, h2, h3, h4, h5, h6 {
    /* Todos los títulos usarán la elegancia de Montserrat */
    font-family: 'Montserrat', sans-serif; 
}

button, input, select, textarea {
    /* Los botones e inputs son rebeldes, hay que forzarlos a usar Poppins */
    font-family: 'Poppins', sans-serif; 
}

/* Y mantenemos tu fondo del dashboard intacto: */
body.bg-dashboard {
    background-color: #f4f6f9; 
}
body.login-page {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg-brown, #72625b);
    
    /* MAGIA 1: Fuerza a que todo se apile verticalmente */
    display: flex;
    flex-direction: column; 
    
    min-height: 100vh;
    width: 100%; /* Asegura que cubra de lado a lado */
    box-sizing: border-box;
}

/* =========================================
   ESTILOS ESPECÍFICOS DEL LOGIN
   ========================================= */

   .login-main {
    flex: 1; /* MAGIA 2: Crece para ocupar el centro y empuja el footer al fondo */
    display: flex;
    justify-content: center; /* Centra la tarjeta horizontalmente */
    align-items: center;     /* Centra la tarjeta verticalmente */
    width: 100%;             /* Evita que se encoja a la izquierda */
    padding: 20px;
    box-sizing: border-box;
}
.login-wrapper {
    display: flex;
    flex-direction: row; /* MAGIA 3: Imagen a la izq, Formulario a la der */
    max-width: 850px;
    width: 100%;
    min-height: 500px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    overflow: hidden;
}

.login-image {
    flex: 1.1; /* Toma un poquito más de la mitad */
    background-color: #1a1a1a;
    background-image: url('../images/album.png'); /* Ojo con esta ruta */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}

.image-overlay-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(45, 52, 54, 0.85); 
    padding: 25px;
    border-radius: 10px;
    color: white;
    backdrop-filter: blur(5px); 
}

.image-overlay-box h3 { margin: 0 0 8px 0; font-size: 26px; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.image-overlay-box p { margin: 0; font-size: 15px; color: #ddd; font-weight: 300; }

.login-form-container {
    flex: 1; /* Toma el resto de la mitad */
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container img {
    max-height: 80px; /* Reduje levemente el logo para mayor elegancia */
    width: auto;
    display: block; 
    margin: 0 auto 10px auto; 
}

.logo-container p { margin:0; font-size: 15px; color:#888; font-weight: 300;}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.input-icon-wrapper {
    position: relative;
}

.icon-left {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
    pointer-events: none; 
}

.icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.icon-right:hover {
    color: #333;
}

.input-icon-wrapper input {
    width: 100%;
    padding: 14px 45px 14px 45px; /* Ajuste sutil del padding del input */
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.input-icon-wrapper input:-webkit-autofill {
    background-color: var(--input-yellow-bg) !important;
    -webkit-box-shadow: 0 0 0 30px var(--input-yellow-bg) inset !important;
}

.input-icon-wrapper input:focus { 
    border-color: var(--mundial-red); 
    box-shadow: 0 0 8px rgba(229, 57, 53, 0.2);
}

.btn-login {
    width: 100%;
    padding: 15px;
    background-color: #006699; 
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-login:hover { background-color: #005580; transform: translateY(-1px); }

.links {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
}

.links a { color: #555; text-decoration: none; font-weight: 500; display: block; margin-bottom: 12px;}
.links a:hover { text-decoration: underline; color: #333; }
.btn-register { color: var(--mundial-red) !important; font-weight: 700; font-size: 16px; margin-top: 15px;}

/* =========================================
   RESPONSIVIDAD (Celulares y Tablets)
   ========================================= */
@media (max-width: 768px) {
    .login-wrapper { 
        flex-direction: column; 
        max-width: 500px; /* Limita el ancho en tablets */
        height: auto; 
    }
    .login-image { display: none; } 
    .login-form-container { padding: 40px 20px; }
}
/* =========================================
   ESTILOS ESPECÍFICOS DEL DASHBOARD (Álbum)
   ========================================= */
.main-content { margin-left: 260px; padding: 30px; width: calc(100% - 260px); box-sizing: border-box; max-width: 1200px; }
@media (max-width: 992px) { .main-content { margin-left: 0; width: 100%; padding: 15px; } }

.top-header { display: flex; justify-content: space-between; align-items: center; background: white; padding: 20px 30px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); margin-bottom: 30px; border-left: 5px solid #006699;}
.top-header h2 { margin: 0; color: #333; font-family: 'Montserrat', sans-serif; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 4px 10px rgba(184, 178, 178, 0.08); display: flex; align-items: center; gap: 15px; }
.stat-icon { width: 50px; height: 50px; border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 20px; background: #e8f4fa; color: #006699; }
.stat-info h4 { margin: 0; font-size: 24px; color: #333; }
.stat-info p { margin: 0; font-size: 13px; color: #888; font-weight: 600; text-transform: uppercase; }

/* PANEL DE ACCIÓN */
.action-panel { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); margin-bottom: 30px; text-align: center; border: 1px solid #eee; }
.action-panel input { padding: 12px; border: 1px solid #ccc; border-radius: 8px; width: 200px; font-size: 16px; text-transform: uppercase; text-align: center; font-weight: bold; }
.btn-action { border: none; padding: 12px 20px; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.2s; }

/* ACORDEÓN DE EQUIPOS */
.team-accordion { margin-bottom: 15px; background: white; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); overflow: hidden; }
.team-header { padding: 18px 25px; background: white; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.3s; user-select: none; }
.team-header:hover { background: #f8f9fa; }
.team-title { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: #333; display: flex; align-items: center; gap: 10px;}
.team-progress { font-size: 14px; color: #888; background: #eee; padding: 4px 10px; border-radius: 20px; font-weight: 600;}
.team-icon { transition: transform 0.3s; color: #006699; }
.team-accordion.active .team-icon { transform: rotate(180deg); }
.team-content { display: none; padding: 20px; background: #fdfdfd; border-top: 1px solid #eee; }
.team-accordion.active .team-content { display: block; }

/* FIGURITAS */
.stickers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 15px; }
.sticker-card { background: white; border: 1px solid #e0e0e0; border-radius: 10px; overflow: hidden; text-align: center; position: relative; transition: 0.2s; display: flex; flex-direction: column;}
.sticker-card:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.sticker-img-box { height: 140px; background: #eee; position: relative; display: flex; justify-content: center; align-items: center; }
.sticker-img-box img { width: 100%; height: 100%; object-fit: cover; }
.sticker-card.missing .sticker-img-box img { filter: grayscale(100%) opacity(0.3); }
.sticker-card.missing { border: 1px dashed #ccc; background: #fafafa; }
.badge-rep { position: absolute; top: -5px; right: -5px; background: #e53935; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 12px; font-weight: bold; border: 2px solid white; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.sticker-info { padding: 10px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center;}
.sticker-code { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; color: #006699; }
.sticker-name { font-size: 11px; color: #666; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.btn-add-quick { width: 100%; padding: 10px; border: none; background: #e8f4fa; color: #006699; font-weight: 600; font-size: 13px; cursor: pointer; transition: 0.2s; border-top: 1px solid #e0e0e0; }
.btn-add-quick:hover { background: #006699; color: white; }
.sticker-card.missing .btn-add-quick { background: #f0f0f0; color: #555; }
.sticker-card.missing .btn-add-quick:hover { background: #27ae60; color: white; }

#toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(100px); background: #333; color: white; padding: 12px 25px; border-radius: 30px; font-size: 14px; font-weight: 600; opacity: 0; transition: all 0.3s ease; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 10px;}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
#toast.success { background: #27ae60; }
#toast.repeat { background: #f39c12; }

/* Sobrescribe el fondo café solo cuando el body tenga esta clase */
body.bg-dashboard {
    background-color: #f4f6f9; 
}
/* =========================================
   SALA DE CHAT (Diseño Integrado)
   ========================================= */
.chat-container {
    display: flex;
    height: calc(100vh - 140px); /* Ocupa la pantalla restando el header y padding */
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid #eee;
}

/* Panel Principal de Mensajes (Izquierda) */
.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
    background: #fdfdfd;
}

.chat-header {
    padding: 15px 25px;
    background: white;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 { margin: 0; font-family: 'Montserrat', sans-serif; color: #333; }

.chat-messages {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Burbujas de Mensaje */
.msg-bubble {
    max-width: 70%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    clear: both;
}

.msg-bubble.me {
    align-self: flex-end;
    background: #006699;
    color: white;
    border-bottom-right-radius: 4px;
}

.msg-bubble.other {
    align-self: flex-start;
    background: #f0f2f5;
    color: #333;
    border-bottom-left-radius: 4px;
}

.msg-info {
    font-size: 11px;
    margin-bottom: 5px;
    opacity: 0.7;
    display: block;
}

/* Zona de Escribir Mensaje */
.chat-input-area {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input-area select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.chat-input-area input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.chat-input-area input:focus { border-color: #006699; }

.chat-input-area button {
    background: #006699;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-input-area button:hover { background: #005580; transform: scale(1.05); }

/* Panel de Usuarios (Derecha) */
.chat-sidebar {
    width: 250px;
    background: white;
    display: flex;
    flex-direction: column;
}

.chat-sidebar-header {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.user-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
}

.user-list li {
    padding: 12px 20px;
    border-bottom: 1px solid #f9f9f9;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71; /* Verde online */
    border-radius: 50%;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .chat-container { flex-direction: column; height: auto; }
    .chat-sidebar { width: 100%; border-top: 1px solid #eee; }
    .chat-messages { min-height: 300px; }
}
/* --- Estilos para Mensajes Públicos --- */
.msg-pub {
    align-self: flex-start;
    background: #f0f2f5;
    color: #333;
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 10px;
    max-width: 80%;
}

/* --- Estilos para Mensajes Privados (Susurros) --- */
.msg-priv {
    align-self: center; /* Se centra para destacar */
    background: #f5eef8; /* Un tono lila suave */
    border: 1px dashed #9b59b6;
    color: #5b2c6f;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 10px 0;
    width: 90%;
    font-style: italic;
    box-shadow: 0 2px 5px rgba(155, 89, 182, 0.1);
}

.msg-priv b { color: #8e44ad; }
.msg-priv i { margin-right: 8px; }

/* =========================================
   DISEÑO DE FORMULARIOS Y TARJETAS (SaaS)
   ========================================= */
/* La caja contenedora para evitar el estiramiento infinito */
.settings-card {
    background: #ffffff;
    max-width: 700px; /* ¡LA MAGIA! Nunca crecerá más de 700px */
    margin: 0 auto;   /* Centra la tarjeta en la pantalla */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra elegante */
    border: 1px solid #eaeaea;
}

/* Diseño profesional para las filas del formulario */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

/* Inputs premium */
.form-group input, 
.form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Evita que el padding rompa el ancho */
    background-color: #fdfdfd;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #006699;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.1); /* Resplandor azul al hacer clic */
}

/* Input bloqueado (No editable) */
.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #888;
    cursor: not-allowed;
}

/* Botón de Guardar */
.btn-save {
    background: #006699;
    color: white;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-save:hover {
    background: #004d73;
    transform: translateY(-2px);
}
/* =========================================
   SISTEMA DE INTERCAMBIOS (Tarjetas Match)
   ========================================= */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.match-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: transform 0.2s;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.match-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfdfd;
}

.match-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.match-profile .avatar {
    width: 40px;
    height: 40px;
    background: #e8f4fa;
    color: #006699;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.user-name { margin: 0; font-weight: 700; color: #333; font-size: 15px;}
.user-city { margin: 0; font-size: 11px; color: #888; font-weight: 600; text-transform: uppercase;}

.match-score {
    background: #fff3e0;
    color: #e67e22;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.match-body {
    display: flex;
    padding: 15px;
    gap: 10px;
}

.trade-col {
    flex: 1;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.trade-col h4 { margin: 0 0 5px 0; font-size: 12px; color: #666; text-transform: uppercase;}
.trade-number { font-size: 24px; font-weight: 800; color: #333; margin-bottom: 5px;}
.trade-list { font-size: 11px; color: #777; line-height: 1.4; word-break: break-word;}

.btn-whatsapp {
    width: 100%;
    padding: 15px;
    background: #25D366; /* Verde Oficial de WhatsApp */
    color: white;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover { background: #1ebe57; }

/* =========================================
   TABLAS DE DATOS (Panel Admin)
   ========================================= */
.table-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 25px;
    border: 1px solid #eaeaea;
    overflow-x: auto; /* Permite scroll horizontal en celulares */
    margin-bottom: 30px;
}

.table-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

table {
    width: 100%;
    border-collapse: collapse; /* Une los bordes para que se vea limpio */
}

thead th {
    background: #f8f9fa;
    color: #555;
    font-weight: 600;
    text-align: left;
    padding: 15px;
    font-size: 14px;
    border-bottom: 2px solid #ddd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 14px;
    vertical-align: middle;
}

/* Efecto cebra muy sutil y hover */
tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

tbody tr:hover {
    background-color: #f0f7fb; /* Un azul muy clarito al pasar el ratón */
    transition: 0.2s ease;
}

/* Diseño para los botones de acción dentro de la tabla */
.table-container button {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    transition: 0.2s;
}

/* =========================================
   ESTILOS DE LOGIN Y REGISTRO (TARJETA FLOTANTE)
   ========================================= */

/* Solo afecta a la página que tenga esta clase en el body */
.login-page {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-wrapper {
    display: flex;
    width: 100%;
    max-width: 950px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 20px;
}

.login-image {
    flex: 1;
    position: relative;
    /* La ruta a la imagen depende de dónde esté la carpeta CSS. Si CSS e IMAGES están al mismo nivel, usa ../images/ */
    background-image: url('../images/bg-login.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-form-container {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.logo-container {
    text-align: center;
    margin-bottom: 25px;
}

.logo-container img {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 160px;
}

.captcha-box {
    background: #f8f9fa;
    border: 1px dashed #ccc;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Correcciones de inputs para que no pisen el ícono */
.input-icon-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border 0.3s;
}

.input-icon-wrapper input:focus {
    border-color: #006699;
}

@media (max-width: 768px) {
    .login-wrapper { flex-direction: column; max-width: 450px; }
    .login-image { min-height: 200px; }
    .login-form-container { padding: 30px 20px; }
    .dual-group { flex-direction: column !important; gap: 0 !important; }
    .dual-group > div { margin-bottom: 20px; width: 100%; }
}