@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';

/* /Pages/Auth/EditUser.razor.rz.scp.css */
/* Estilo reutilizado del esquema proporcionado */
.custom-card[b-bteic6ifaj] {
    background-color: #ffffff;
    border: 2px solid #00723F;
    border-radius: 8px;
}

.custom-card-header[b-bteic6ifaj] {
    background-color: #00723F;
    color: #ffffff;
    padding: 10px;
    border-bottom: 2px solid #00723F;
}

.custom-label[b-bteic6ifaj] {
    font-weight: bold;
    color: #00723F;
}

.custom-input[b-bteic6ifaj] {
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .custom-input:focus[b-bteic6ifaj] {
        border-color: #DD971A;
        box-shadow: 0 0 5px #DD971A;
        outline: none;
    }

.custom-card-footer[b-bteic6ifaj] {
    background-color: #ffffff;
    border-top: 2px solid #00723F;
}

.custom-primary-btn[b-bteic6ifaj] {
    background-color: #00723F;
    color: #ffffff;
    border: none;
}

    .custom-primary-btn:hover[b-bteic6ifaj] {
        background-color: #005a2e;
    }

.custom-secondary-btn[b-bteic6ifaj] {
    background-color: #DD971A;
    color: #ffffff;
    border: none;
}

    .custom-secondary-btn:hover[b-bteic6ifaj] {
        background-color: #b87a13;
    }

/* ---- Overlay y modal general ---- */
.modal-overlay[b-bteic6ifaj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
    z-index: 1040; /* Debe estar detrás del modal pero delante del contenido */
}

.modal-content[b-bteic6ifaj] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    z-index: 1050; /* Encima del overlay */
    min-width: 70%;
    border-radius: 8px;
}

/* Header móvil con nombre del usuario */
.user-header-mobile[b-bteic6ifaj] {
    background-color: #00723F; /* Verde UABC */
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 16px;
}

/* ---- Desktop (se mantiene igual) ---- */
.user-edit-header[b-bteic6ifaj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-edit-title[b-bteic6ifaj] {
    font-size: 16px;
    font-weight: bold;
    color: white; /* Verde texto en desktop */
}

/* Botón cambiar contraseña en desktop */
.change-pass-btn[b-bteic6ifaj] {
    background-color: #DD971A;
    border: none;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    width: auto;
}

    .change-pass-btn:hover[b-bteic6ifaj] {
        background-color: #b87a13;
    }

/* ---- Responsividad EditUser ---- */
@media (max-width: 768px) {

    /* Quitar el diseño en 2 columnas */
    .card-body .row[b-bteic6ifaj] {
        display: block;
    }

    .card-body .col-md-6[b-bteic6ifaj] {
        width: 100%;
    }

    /* Labels más visibles */
    .card-body label[b-bteic6ifaj] {
        font-weight: bold;
        color: black;
        margin-bottom: 5px;
    }

    /* Inputs con más espacio táctil */
    .form-control.custom-input[b-bteic6ifaj],
    .form-select.custom-input[b-bteic6ifaj] {
        padding: 12px;
        font-size: 15px;
    }

    /* Card sin borde ni header verde */
    .custom-card[b-bteic6ifaj] {
        border: none;
    }

    .custom-card-header[b-bteic6ifaj] {
        background-color: transparent;
        border-bottom: none;
        padding: 10px 0;
    }

    /* Header con título y botón en la misma fila */
    .user-edit-header[b-bteic6ifaj] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .user-edit-title[b-bteic6ifaj] {
        font-size: 16px;
        font-weight: bold;
        color: #00723F; /* visible en móvil */
    }

    /* Botón compacto y alineado */
    .change-pass-btn[b-bteic6ifaj] {
        background-color: #DD971A;
        border: none;
        color: #fff;
        font-size: 13px;
        padding: 6px 12px;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        width: auto !important; /* clave para evitar que se alargue */
    }

        .change-pass-btn:hover[b-bteic6ifaj] {
            background-color: #b87a13;
        }

    /* Botón Guardar a lo ancho */
    .d-flex.justify-content-end[b-bteic6ifaj] {
        justify-content: center !important;
    }

    .custom-primary-btn[b-bteic6ifaj] {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

/* ---- Versión muy pequeña (extra small <480px) ---- */
@media (max-width: 480px) {
    .form-control.custom-input[b-bteic6ifaj],
    .form-select.custom-input[b-bteic6ifaj] {
        font-size: 14px;
        padding: 10px;
    }

    .custom-primary-btn[b-bteic6ifaj] {
        font-size: 15px;
    }

    .change-pass-btn[b-bteic6ifaj] {
        font-size: 12px;
        padding: 5px 10px;
    }
}
/* /Pages/Auth/Login.razor.rz.scp.css */
.login-wrapper[b-yjinpbx4kq] {
    max-width: 380px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


    .login-wrapper h1[b-yjinpbx4kq] {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #111;
    }


    .login-wrapper label[b-yjinpbx4kq] {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }


    .login-wrapper input.form-control[b-yjinpbx4kq] {
        border-radius: 8px;
        padding: 0.75rem;
        border: 1px solid #ccc;
        font-size: 1rem;
    }


    .login-wrapper .form-group[b-yjinpbx4kq] {
        margin-bottom: 1.25rem;
    }


    .login-wrapper .form-footer[b-yjinpbx4kq] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
    }


.google-button-container[b-yjinpbx4kq] {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}


.g_id_signin[b-yjinpbx4kq] {
    display: flex;
    justify-content: center;
    width: 100% !important;
    max-width: 100% !important;
/*    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;*/
}
    .hijos100 > *[b-yjinpbx4kq] {
        width: 100% !important;
    }

.S9gUrf-YoZ4jf[b-yjinpbx4kq] {
    width: 100%;
}

.login-wrapper .btn-primary[b-yjinpbx4kq] {
    background-color: #024731;
    border-color: #024731;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    width: 100%;
}

    .login-wrapper .btn-primary :hover[b-yjinpbx4kq] {
        background-color: #FFD700;
        border-color: #FFD700;
    }


.login-wrapper .small-links[b-yjinpbx4kq] {
    font-size: 0.9rem;
}

/* Animación de expansión / colapso */
.form-container[b-yjinpbx4kq] {
    transition: max-height 0.5s ease, opacity 0.5s ease;
    max-height: 0;
    opacity: 0;
    
}

    .form-container.expand[b-yjinpbx4kq] {
        max-height: 1000px; /* valor suficientemente grande */
        opacity: 1;
    }

/* Quitar flechas de botón */
.toggle-email-form[b-yjinpbx4kq] {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.6rem 1rem;
}

.btn-sm-custom[b-yjinpbx4kq] {
    justify-self:center;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    max-width:75%;
    min-width:75%;

}
/* /Pages/Auth/Register.razor.rz.scp.css */
.hidden[b-pu29abcuio]{
    display: none;
}

#googleSignInContainer[b-pu29abcuio] {
    position: fixed; /* Hace que el bot�n se quede en la misma posici�n al hacer scroll */
    bottom: 20px; /* Ajusta el espacio desde el fondo */
    right: 20px; /* Ajusta el espacio desde la derecha */
    z-index: 1000; /* Aseg�rate de que el bot�n est� sobre otros elementos */
}

.col-6[b-pu29abcuio]{
	margin-left: 10px;
	margin-right: 10px;
}
/* /Pages/Index.razor.rz.scp.css */
.titulo-seleccion[b-wgaya40r63] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #014421; /* Verde UABC */
    text-align: center;
    margin-bottom: 1rem;
}

.margen-responsivo[b-wgaya40r63] {

    margin: 0px 80px 0px 80px;
}

.folio-seleccionado[b-wgaya40r63] {
    background-color: #00723F !important; /* dorado */
    border: 3px solid #00723F !important; /* verde UABC */
    box-shadow: 0 0 10px 2px #014421;
    color: white !important;
    transform: scale(1.05);
}

.costo-boleto[b-wgaya40r63] {
    font-size: 1.2rem;
    font-weight: bold;
    color: #a67c00; /* Dorado UABC */
    text-align: center;
}

/*.card {
    border: 1px solid #014421;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}*/

    .card:hover[b-wgaya40r63] {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

.card-title[b-wgaya40r63] {
    font-size: 1.1rem;
    font-weight: bold;
    color: #014421;
    text-align: center;
}

.card-footer[b-wgaya40r63] {
    background-color: #f9f9f9;
}

.btn-primary[b-wgaya40r63] {
    background-color: #014421;
    border-color: #014421;
}

    .btn-primary:hover[b-wgaya40r63] {
        background-color: #a67c00;
        border-color: #a67c00;
    }


:root[b-wgaya40r63] {
    --radius: 16px;
    --gap: 10px;
}

/* Tarjetas genéricas */
.card[b-wgaya40r63] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 8px 4px #d3d3d3d1;
    border-radius: var(--radius);
    font-family: sans-serif;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    margin: 5px;
}

/* Carrusel “hero” */
.hero[b-wgaya40r63] {
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
}

    .hero .mud-carousel-item[b-wgaya40r63] {
        border-radius: var(--radius);
    }

.carousel-item-content[b-wgaya40r63] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container[b-wgaya40r63] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .image-container img[b-wgaya40r63] {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

/* Chips / bullets de productos (botones con nombre) */
.chip-group[b-wgaya40r63] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* centra */
    margin-top: 12px;
}

.chip[b-wgaya40r63] {
    border: none;
    border-radius: 999px;
    font-weight: 700;
    padding: 8px 12px;
    cursor: pointer;
    transition: transform .15s ease, opacity .2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .chip:hover[b-wgaya40r63] {
        transform: scale(1.03);
        opacity: .9;
    }

/* Buscador + botones de acción */
.search-bar[b-wgaya40r63] {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: var(--gap);
    align-items: center;
    margin-top: 14px;
    margin-bottom: 8px;
}

    .search-bar .form-control[b-wgaya40r63] {
        min-height: 44px;
    }

/* Encabezados de sección */
.section-head[b-wgaya40r63] {
    margin: 12px 0 10px;
}

.titulo-seleccion[b-wgaya40r63] {
    display: block;
    font-weight: 800;
    letter-spacing: .3px;
    margin: 10px 0 6px;
}

    .titulo-seleccion.with-pin .pin-icon[b-wgaya40r63] {
        margin-right: 6px;
        vertical-align: baseline;
        font-size: .95em;
    }

.costo-boleto[b-wgaya40r63] {
    font-weight: 700;
    margin: 4px 0 14px;
}

/* Grid de folios -> botón grande */
.folios-grid[b-wgaya40r63] {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 12px;
    margin-top: 6px;
    margin-bottom: 18px;
}

.folio-btn[b-wgaya40r63] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    min-height: 64px;
    font-size: 20px;
    font-weight: 800;
    user-select: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
    transition: transform .06s ease, box-shadow .12s ease;
}

    .folio-btn:active[b-wgaya40r63] {
        transform: scale(.98);
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }

.folio-label[b-wgaya40r63] {
    margin: 0;
}

/* Utilidades visibilidad */
.desktop-only[b-wgaya40r63] {
    display: block !important;
}

.mobile-only[b-wgaya40r63] {
    display: none !important;
}

/* Paginación centrada */
.pager-wrap[b-wgaya40r63] {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

    .pager-wrap.mobile-only[b-wgaya40r63] {
        display: none !important;
    }
    /* desktop por defecto oculta */
    .pager-wrap.desktop-only[b-wgaya40r63] {
        display: flex !important;
    }
/* desktop por defecto muestra */

@media (max-width: 1500px) {

    .margen-responsivo[b-wgaya40r63] {
        margin: 0px 0px 0px 0px;
    }
}

    /* ====== MOBILE ====== */
    @media (max-width: 576px) {

        .margen-responsivo[b-wgaya40r63] {
            margin: 0px 0px 0px 0px;
        }

        .hero[b-wgaya40r63] {
            height: 140px;
        }

        /* chips */
        .chip-group[b-wgaya40r63] {
            display: grid;
            grid-template-columns: repeat(2, minmax(0,1fr));
            justify-items: stretch; /* llena ancho */
        }

        /* --- BUSCADOR: input arriba y dos botones lado a lado --- */
        .search-bar[b-wgaya40r63] {
            display: grid;
            gap: 10px;
            grid-template-columns: 1fr 1fr; /* 2 columnas */
            grid-template-areas:
                "input  input"
                "buscar limpiar"
                "refrescar refrescar";
        }

        .sb-input[b-wgaya40r63] {
            grid-area: input;
        }

        .sb-buscar[b-wgaya40r63] {
            grid-area: buscar;
            width: 100%;
        }

        .sb-limpiar[b-wgaya40r63] {
            grid-area: limpiar;
            width: 100%;
        }

        .sb-refrescar[b-wgaya40r63] {
            grid-area: refrescar;
            width: 100%;
        }

        .desktop-only[b-wgaya40r63] {
            display: none !important;
        }

        .mobile-only[b-wgaya40r63] {
            display: block !important;
        }

        /* En móvil, la paginación inferior (mobile-only) debe mostrarse en flex */
        .pager-wrap.mobile-only[b-wgaya40r63] {
            display: flex !important;
        }
        /* Y la superior (desktop-only) debe ocultarse */
        .pager-wrap.desktop-only[b-wgaya40r63] {
            display: none !important;
        }

        .section-head[b-wgaya40r63] {
            margin: 16px 0;
        }

        /* Tipografía legible en móviles (stack de sistema) */
        .titulo-seleccion[b-wgaya40r63],
        .costo-boleto[b-wgaya40r63] {
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; /* ← Arial */
        }

        .titulo-seleccion[b-wgaya40r63] {
            font-size: 14px; /* más pequeño y legible */
            line-height: 1.35;
            letter-spacing: .2px;
            margin: 18px 0 8px; /* más aire arriba/abajo */
            text-wrap: balance; /* ayuda a cortes de línea agradables (si el navegador lo soporta) */
        }

            .titulo-seleccion.with-pin .pin-icon[b-wgaya40r63] {
                font-size: 1em;
                margin-right: 8px;
            }

        .costo-boleto[b-wgaya40r63] {
            font-size: 14px;
            line-height: 1.4;
            margin: 8px 0 16px; /* más margen inferior */
        }

        /* --- FOLIOS: 2 columnas en móvil --- */
        .folios-grid[b-wgaya40r63] {
            grid-template-columns: repeat(3, minmax(0,1fr));
        }

        .folio-btn[b-wgaya40r63] {
            min-height: 40px;
            font-size: 12px;
        }
    }

    /* ====== TABLET ====== */
    @media (min-width:577px) and (max-width: 991px) {
        .chip-group[b-wgaya40r63] {
            grid-template-columns: repeat(2,minmax(0,1fr));
        }

        .folios-grid[b-wgaya40r63] {
            grid-template-columns: repeat(3,minmax(0,1fr));
        }
    }

    .hero[b-wgaya40r63] {
        width: 100%;
        height: 400px; /* Altura fija del carrusel */
        border-radius: 12px;
    }

    /* Ajuste para pantallas medianas */
    @media (max-width: 992px) {
        .hero[b-wgaya40r63] {
            height: 300px;
        }
    }

    /* Ajuste para móviles */
    @media (max-width: 600px) {
        .hero[b-wgaya40r63] {
            height: 220px;
        }
    }
/* /Pages/Orders/MyProducts.razor.rz.scp.css */
/* Colores institucionales UABC */
.bg-uabc-green[b-w1r52aa592] {
    background-color: #006837; /* Verde institucional */
    color: #FFFFFF;
}

.text-uabc-green[b-w1r52aa592] {
    color: #006837; /* Texto en verde institucional */
}

.bg-uabc-gold[b-w1r52aa592] {
    background-color: #e0c260; /* Dorado institucional */
    color: #006837;
}

.bg-uabc-lightgreen[b-w1r52aa592] {
    background-color: #F0F8FF; /* Tono más claro de verde */
    color: #006837;
}

/* Tabla y encabezado */
.table-striped tbody tr:nth-of-type(odd)[b-w1r52aa592] {
    background-color: #F0F8FF; /* Alternar filas con el verde claro */
}

.table-primary[b-w1r52aa592] {
    background-color: #FFD700; /* Dorado para encabezado */
    color: #006837;
}

.table-secondary[b-w1r52aa592] {
    background-color: #F0F8FF; /* Fondo claro */
}

/* Botón personalizado */
.btn-outline-uabc-green[b-w1r52aa592] {
    color: #006837; /* Borde y texto verde */
    border-color: #006837;
}

.btn-outline-uabc-green:hover[b-w1r52aa592] {
    background-color: #006837;
    color: #FFFFFF;
}

/* Estilo del spinner */
.spinner-border.text-uabc-green[b-w1r52aa592] {
    color: #006837; /* Color del spinner */
}

/* Bordes personalizados para la tarjeta */
.border-uabc-green[b-w1r52aa592] {
    border: 2px solid #006837;
}

/* Encabezado de la tarjeta */
.card-header.bg-uabc-green[b-w1r52aa592] {
    background-color: #006837;
    color: #FFFFFF;
}

.transition-rotate[b-w1r52aa592] {
    transition: transform .2s ease-in-out;
}

.oi-chevron-bottom.transition-rotate[b-w1r52aa592] {
    transform: rotate(0deg);
}

.oi-chevron-right.transition-rotate[b-w1r52aa592] {
    transform: rotate(90deg);
}
/* /Pages/Orders/ProcessPay.razor.rz.scp.css */
/* === COLORES INSTITUCIONALES === */
.text-uabc-green[b-mrr6p5crkr] {
    color: #00723F !important;
}

.bg-uabc-green[b-mrr6p5crkr] {
    background-color: #00723F !important;
    color: #fff !important;
}

.border-uabc-green[b-mrr6p5crkr] {
    border-color: #00723F !important;
}

.text-uabc-gold[b-mrr6p5crkr] {
    color: #DD971A !important;
}

.bg-uabc-gold[b-mrr6p5crkr] {
    background-color: #DD971A !important;
    color: #1b1b1b !important;
}

.border-uabc-gold[b-mrr6p5crkr] {
    border-color: #DD971A !important;
}

.bg-uabc-green-10[b-mrr6p5crkr] {
    background-color: rgba(0,114,63,.08) !important;
}

.bg-uabc-gold-10[b-mrr6p5crkr] {
    background-color: rgba(221,151,26,.12) !important;
}

/* === BOTONES === */
.btn-uabc-green[b-mrr6p5crkr] {
    background-color: #00723F !important;
    border-color: #00723F !important;
    color: #fff !important;
    font-weight: 600;
}

    .btn-uabc-green:hover[b-mrr6p5crkr] {
        background-color: #005e35 !important;
    }

/* === BASE GENERAL === */
body[b-mrr6p5crkr] {
    background-color: #f9f9f9;
    color: #333;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* === CONTENEDORES === */
.resumen-compra[b-mrr6p5crkr],
.boletos-seleccionados[b-mrr6p5crkr] {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 18px 20px;
}

/* === RESUMEN DE COMPRA === */
.resumen-compra[b-mrr6p5crkr] {
    border: 2px solid #00723F;
}

    .resumen-compra h5[b-mrr6p5crkr] {
        color: #00723F;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 14px;
        border-bottom: 2px solid #DD971A;
        padding-bottom: 6px;
    }

    .resumen-compra .d-flex[b-mrr6p5crkr] {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .resumen-compra span[b-mrr6p5crkr] {
        color: #000;
    }

    .resumen-compra .text-success[b-mrr6p5crkr] {
        color: #00723F !important;
        font-weight: 600;
    }

    .resumen-compra hr[b-mrr6p5crkr] {
        border-top: 1px solid #dcdcdc;
        margin: 10px 0;
    }

    .resumen-compra .fw-bold.fs-5 span[b-mrr6p5crkr] {
        color: #DD971A;
        font-weight: 700;
    }

/* === BOLETOS SELECCIONADOS === */
.boletos-seleccionados[b-mrr6p5crkr] {
    border: 2px solid #DD971A;
}

    .boletos-seleccionados h5[b-mrr6p5crkr] {
        color: #DD971A;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 16px;
        border-bottom: 2px solid #00723F;
        padding-bottom: 6px;
    }

    /* === BOTÓN DE SORTEO COLAPSABLE === */
    .boletos-seleccionados button.btn[b-mrr6p5crkr] {
        background-color: #f8f8f8;
        color: #00723F;
        font-weight: 600;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 10px 14px;
        transition: all 0.2s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .boletos-seleccionados button.btn:hover[b-mrr6p5crkr] {
            background-color: #eaf7ee;
            border-color: #00723F;
        }

    .boletos-seleccionados .mud-icon[b-mrr6p5crkr] {
        transition: transform 0.25s ease;
    }

    .boletos-seleccionados button.btn:hover .mud-icon[b-mrr6p5crkr] {
        transform: scale(1.1);
    }

/* === LISTADO DE BOLETOS === */
.list-group-item[b-mrr6p5crkr] {
    border: none !important;
    border-bottom: 1px solid #eee !important;
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
}

    .list-group-item:last-child[b-mrr6p5crkr] {
        border-bottom: none !important;
    }

    .list-group-item span:first-child[b-mrr6p5crkr] {
        color: #00723F;
        font-weight: 600;
    }

/* === CUPONES === */
.input-group .form-control[b-mrr6p5crkr] {
    border: 2px solid #00723F;
    border-radius: 6px 0 0 6px;
    font-size: 0.95rem;
    color: #000;
}

    .input-group .form-control[b-mrr6p5crkr]::placeholder {
        color: #999;
    }

.input-group .btn-success[b-mrr6p5crkr] {
    background-color: #00723F;
    border: 2px solid #00723F;
    color: white;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
}

    .input-group .btn-success:hover[b-mrr6p5crkr] {
        background-color: #005e35;
    }

/* === CHIP CUPÓN APLICADO === */
.mud-chip[b-mrr6p5crkr] {
    margin-right: 8px;
    margin-bottom: 5px;
    font-weight: 500;
    border: 1px solid #00723F;
    background-color: rgba(0, 114, 63, 0.1);
    color: #00723F;
}

/* === ALERTAS DE PROMOCIONES === */
.mud-alert[b-mrr6p5crkr] {
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: #f4fbf6;
    border-left: 4px solid #00723F;
    color: #094f2b;
}

/* === BANNER MSI === */
.banner-msi[b-mrr6p5crkr] {
    background-color: rgba(0, 114, 63, 0.08);
    color: #00723F;
    font-weight: 600;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.95rem;
}

/* === BOTÓN PRINCIPAL DE PAGO === */
.btn-pago[b-mrr6p5crkr],
.mud-button-filled-success[b-mrr6p5crkr] {
    background-color: #00723F !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    font-size: 1rem;
}

    .btn-pago:hover[b-mrr6p5crkr],
    .mud-button-filled-success:hover[b-mrr6p5crkr] {
        background-color: #005e35 !important;
        transform: scale(1.02);
    }

/* === FORMULARIO DE PAGO (Conekta) === */
.card.border-uabc-green[b-mrr6p5crkr] {
    border: 2px solid #00723F;
    border-radius: 10px;
    overflow: hidden;
}

    .card.border-uabc-green .card-header[b-mrr6p5crkr] {
        background-color: #00723F;
        color: white;
        font-weight: 600;
        font-size: 1.05rem;
        border-bottom: 3px solid #DD971A;
    }

    .card.border-uabc-green label[b-mrr6p5crkr] {
        color: #222;
        font-weight: 600;
    }

    .card.border-uabc-green .form-control[b-mrr6p5crkr] {
        border: 1.5px solid #ccc;
        border-radius: 6px;
        font-size: 0.95rem;
        color: #000;
    }

/* === PIE DE TARJETAS === */
.accepted-cards small[b-mrr6p5crkr] {
    color: #333;
    font-weight: 600;
}

/* === TITULARES CON SUBRAYADO DORADO (opcional) === */
.uabc-header[b-mrr6p5crkr] {
    border-bottom: 3px solid #DD971A;
    padding-bottom: .35rem;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .resumen-compra[b-mrr6p5crkr], .boletos-seleccionados[b-mrr6p5crkr] {
        margin-bottom: 20px;
    }

    .btn-pago[b-mrr6p5crkr] {
        width: 100%;
        font-size: 1rem;
    }

    h5[b-mrr6p5crkr] {
        font-size: 1rem;
    }

    .card.border-uabc-green .card-header[b-mrr6p5crkr] {
        font-size: 1rem;
    }
}
/* /Pages/Orders/ResumenCompra.razor.rz.scp.css */
.text-uabc-green[b-51ud1tbz9p] {
    color: #00573F;
}

.bg-uabc-green[b-51ud1tbz9p] {
    background-color: #00573F;
}

.border-uabc-green[b-51ud1tbz9p] {
    border-color: #00573F;
}

.bg-uabc-gold[b-51ud1tbz9p] {
    background-color: #FFD700;
}

/* Botones */
.btn-uabc-green[b-51ud1tbz9p] {
    background-color: #00573F;
    color: white;
    border: none;
}

    .btn-uabc-green:hover[b-51ud1tbz9p] {
        background-color: #00482A;
    }

.btn-uabc-gold[b-51ud1tbz9p] {
    background-color: #FFD700;
    color: #00573F;
    border: none;
}

    .btn-uabc-gold:hover[b-51ud1tbz9p] {
        background-color: #E5C200;
    }

/* Tickets */
.ticket[b-51ud1tbz9p] {
    background-color: #F8F9FA;
    padding: 15px;
}

    .ticket h5[b-51ud1tbz9p] {
        font-weight: bold;
        font-size: 1.1rem;
    }

.qrcode[b-51ud1tbz9p] {
    display: flex;
    justify-content: center;
}

/* ========================
   Responsividad
   ======================== */
@media (max-width: 768px) {
    #purchase-Bill h1[b-51ud1tbz9p] {
        font-size: 1.5rem;
        text-align: center;
    }

    /* Cards m�viles */
    #purchase-Bill .card[b-51ud1tbz9p] {
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    #purchase-Bill .card-body[b-51ud1tbz9p] {
        font-size: 0.9rem;
    }

    #purchase-Bill h5[b-51ud1tbz9p],
    #purchase-Bill h6[b-51ud1tbz9p] {
        font-size: 1rem;
    }

    .ticket[b-51ud1tbz9p] {
        font-size: 0.9rem;
    }
}
/* /Pages/Orders/ShowCart.razor.rz.scp.css */
.btn-black[b-4ovlon7mcw] {
    background: #111 !important;
    color: #fff !important;
    border-color: #111 !important;
}

    .btn-black:hover[b-4ovlon7mcw] {
        filter: brightness(1.08);
    }

@media (max-width:576px) {
    :root[b-4ovlon7mcw] {
        --uabc-green: #0B6B3A; /* ajusta si usas otro verde institucional */
        --uabc-yellow: #DD971A;
        --radius: 12px;
    }

    /* ====== 1) Resumen en cajas verdes, distribuidas uniformemente ====== */
    .cart-summary[b-4ovlon7mcw] {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr); /* tres cajas iguales */
        /*gap: 10px;*/
        margin-bottom: 12px;
    }

        .cart-summary .col-4[b-4ovlon7mcw] {
            padding: 0;
        }

        .cart-summary .col-md-4[b-4ovlon7mcw] {
            padding-left: 3px;
            padding-right: 3px;
        }

        /* anula gutters en móvil */
        .cart-summary h3[b-4ovlon7mcw] {
            background: #0B6B3A;
            color: #fff;
            border-radius: 12px;
            margin: 0;
            padding: 0px 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            white-space: normal;
            word-break: keep-all;
            overflow-wrap: anywhere;
            min-height: 78px; /* altura uniforme */
            line-height: 1.15;
            font-size: clamp(11px,2.6vw,12px);
            box-shadow: 0 1px 2px rgba(0,0,0,.12);
        }

            .cart-summary h3 strong[b-4ovlon7mcw] {
                display: block;
                margin-top: 4px;
                font-size: clamp(14px,4vw,16px);
                font-weight: 800;
                color:white !important;
            }

    /* ====== 2) Botones principales más largos ====== */
    /* Limpiar / Agregar: dos columnas iguales, ancho 100%, más altos */
    .actions-bar[b-4ovlon7mcw] {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .actions-inline[b-4ovlon7mcw] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        
        gap: 10px;
    }

        .actions-inline .btn[b-4ovlon7mcw] {
            width: 100%;
            min-height: 46px;
            font-weight: 700;
            border-radius: 10px;
        }

    /* Confirmar: ancho completo y sticky al fondo */
    .cta-sticky[b-4ovlon7mcw] {
        grid-column: 1 / -1;
        position: sticky;
        bottom: 8px;
        z-index: 5;
        margin-left: 0 !important;
    }

        .cta-sticky .btn[b-4ovlon7mcw] {
            width: 100%;
            min-height: 48px;
            font-weight: 800;
            border-radius: 12px;
        }


    .cart-table tr.group-header[b-4ovlon7mcw] {
        display: none !important;
    }

    /* ====== 3) Tarjetas: texto a la izquierda y labels en negritas ====== */
    .cart-table[b-4ovlon7mcw] {
        border-collapse: separate;
        border-spacing: 0 10px;
    }

        .cart-table thead[b-4ovlon7mcw] {
            display: none;
        }

        .cart-table tbody[b-4ovlon7mcw], .cart-table tr[b-4ovlon7mcw], .cart-table td[b-4ovlon7mcw] {
            display: block;
            width: 100%;
        }

        .cart-table tr[b-4ovlon7mcw] {
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 14px;
            box-shadow: 0 1px 3px rgba(0,0,0,.08);
            padding: 10px;
            margin-bottom: 10px;
        }


            .cart-table tr.group-header[b-4ovlon7mcw] {
                background: #D8C18A;
                border-color: #D8C18A;
                color: #fff;
                border-radius: 12px;
                padding: 8px 10px;
                box-shadow: none;
            }

                .cart-table tr.group-header td[b-4ovlon7mcw] {
                    padding: 0;
                }

        /* Encabezado dentro de cada tarjeta */
        .cart-table .card-head[b-4ovlon7mcw] {
            background: #D8C18A;
            color: #fff;
            border-radius: 10px;
            padding: 8px 10px;
            margin-bottom: 8px;
            font-weight: 800;
        }


        .cart-table td[b-4ovlon7mcw] {
            padding: 10px 8px;
            border: none;
        }

            .cart-table td + td[b-4ovlon7mcw] {
                border-top: 1px dashed #eee;
            }

            /* Label arriba en negritas y valor debajo */
            .cart-table td[b-4ovlon7mcw]::before {
                content: attr(data-label);
                display: block;
                font-weight: 800;
                color: #2b2b2b;
                margin-bottom: 2px;
            }

            /* Select comprador a 100% de ancho */
            .cart-table td.cell-comprador select[b-4ovlon7mcw] {
                width: 100%;
                min-height: 40px;
            }

        /* Visual para “boleto sin rótulo” */
        .cart-table tr.boleto-sin-rotulo[b-4ovlon7mcw] {
            background: #ffe6e6 !important;
            border-color: #ffbaba;
        }

        /* ====== 4) Botones de cada tarjeta: distribuidos uniformemente ====== */
        .cart-table td.cell-actions[b-4ovlon7mcw]::before {
            display: none;
        }
    /* sin etiqueta "Acciones" */
    .action-grid[b-4ovlon7mcw] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

        .action-grid .btn[b-4ovlon7mcw] {
            width: 100%;
            min-height: 40px;
            font-weight: 700;
            border-radius: 10px;
        }

    .mobile-only[b-4ovlon7mcw] {
        display: block !important;
    }
    .desktop-only[b-4ovlon7mcw] {
        display: none !important;
    }

    .checkout-footer-boton-movil[b-4ovlon7mcw] {
        display: block !important;
        position: sticky;
        bottom: 0;
        background-color: white;
        padding: 10px;
        border-top: 1px solid #e0e0e0;
        z-index: 10;
    }
}


.mobile-only[b-4ovlon7mcw] {
    display: none;
}

.checkout-footer[b-4ovlon7mcw] {
    position: sticky;
    bottom: 0;
    background-color: white;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
    z-index: 10;
}


.mobile-summary[b-4ovlon7mcw] {
    display: none;
}
/* /Pages/Productos/BoletoDigital.razor.rz.scp.css */
.rotulo-wrapper[b-otunodacco] {
    width: 100%;
    display: flex;
    justify-content: center;
}

.rotulo-ticket[b-otunodacco] {
    background-color: #007600;
    width: 100%;
    max-width: 1024px;
    min-height: auto;
    padding: 20px;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    box-sizing: border-box; /* Importante para que el padding no rompa el ancho */
}

/* Tablas Generales */
.rotulo-table-header[b-otunodacco], .rotulo-table-data[b-otunodacco] {
    width: 100%;
    border-collapse: collapse;
}

/* --- Header --- */
.col-numero[b-otunodacco] {
    width: 40%;
    vertical-align: top;
}

.numero-box[b-otunodacco] {
    width: 100%;
    max-width: 350px;
    background-color: #facc6d;
    color: #2d3e50;
    font-family: Impact, Anton, sans-serif;
    font-size: 34px;
}

.lbl-numero[b-otunodacco] {
    padding: 12px;
}

.val-numero[b-otunodacco] {
    padding: 12px;
    background-color: white;
    text-align: right;
    padding-right: 30px;
}

.col-info[b-otunodacco] {
    vertical-align: top;
    color: white;
    padding-left: 15px;
}

.info-title[b-otunodacco] {
    font-size: 18px;
    font-weight: bold;
}

.info-permiso[b-otunodacco] {
    font-size: 14px;
    margin-top: 5px;
}

/* --- Data Table --- */
.rotulo-table-data[b-otunodacco] {
    font-size: 24px;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.lbl-data[b-otunodacco] {
    text-align: right;
    width: 25%; /* Porcentaje en lugar de px */
    padding-right: 15px;
    white-space: nowrap; /* Evita que el label se rompa en dos lineas si es posible */
}

.val-data[b-otunodacco] {
    background-color: white;
    color: #2D3E50;
    padding: 10px;
    font-weight: 500;
    width: 75%;
}

.lbl-cp[b-otunodacco] {
    width: 10%;
    text-align: right;
    padding-right: 10px;
    color: white;
    white-space: nowrap;
}

.val-cp[b-otunodacco] {
    width: 20%;
    background-color: white;
    color: #2D3E50;
    padding: 10px;
    font-weight: 500;
    text-align: center;
}

.lbl-movil[b-otunodacco] {
    text-align: right;
    padding-right: 10px;
    color: white;
    white-space: nowrap;
}

/* =========================================
       MEDIA QUERIES PARA EL RÓTULO
       ========================================= */

/* TABLET Y MÓVIL (Hasta 1024px) */
@media (max-width: 1024px) {
    .numero-box[b-otunodacco] {
        font-size: 24px;
    }

    .info-title[b-otunodacco] {
        font-size: 16px;
    }

    .rotulo-table-data[b-otunodacco] {
        font-size: 18px;
        border-spacing: 0 5px;
    }

    .lbl-numero[b-otunodacco], .val-numero[b-otunodacco] {
        padding: 8px;
    }

    .val-data[b-otunodacco], .val-cp[b-otunodacco] {
        padding: 6px;
    }
}

/* MÓVIL (Hasta 768px) */
@media (max-width: 768px) {
    .rotulo-ticket[b-otunodacco] {
        padding: 10px;
    }

    /* Header más pequeño */
    .numero-box[b-otunodacco] {
        font-size: 16px;
    }

    .info-title[b-otunodacco] {
        font-size: 12px;
    }

    .info-permiso[b-otunodacco] {
        font-size: 10px;
    }

    .col-numero[b-otunodacco] {
        width: 45%;
    }

    /* Data más pequeña */
    .rotulo-table-data[b-otunodacco] {
        font-size: 12px;
        border-spacing: 0 4px;
    }

    .lbl-data[b-otunodacco] {
        width: 30%;
        padding-right: 8px;
        white-space: normal;
        line-height: 1.2;
    }

    .val-data[b-otunodacco] {
        padding: 4px;
    }

    .lbl-numero[b-otunodacco], .val-numero[b-otunodacco] {
        padding: 5px;
        padding-right: 5px;
    }
}

/* MÓVIL PEQUEÑO (Hasta 470px) */
@media (max-width: 470px) {
    .rotulo-ticket[b-otunodacco] {
        padding: 5px;
        min-height: auto;
    }

    .numero-box[b-otunodacco] {
        font-size: 14px;
    }

    .info-title[b-otunodacco] {
        font-size: 10px;
    }

    .rotulo-table-data[b-otunodacco] {
        font-size: 10px;
        border-spacing: 0 3px;
    }

    .lbl-data[b-otunodacco] {
        padding-right: 4px;
    }

    .val-data[b-otunodacco] {
        padding: 2px 4px;
    }

    /* Ajustes finos para CP y Movil */
    .lbl-cp[b-otunodacco], .lbl-movil[b-otunodacco] {
        font-size: 9px;
        padding-right: 2px;
    }
}


/* =========================================
       TUS ESTILOS EXISTENTES (NO MODIFICADOS)
       ========================================= */
.boleto-wrapper[b-otunodacco] {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
}

/* ========== 🖥️ ESCRITORIO GRANDE ========== */
.boleto-container[b-otunodacco] {
    position: relative;
    width: 1000px; /* ancho fijo */
    height: 660px; /* alto proporcional */
    overflow: hidden;
}
/* ========== 🖥️ ESCRITORIO GRANDE ========== */
.boleto-container-reverso[b-otunodacco] {
    position: relative;
}


.boleto-img[b-otunodacco] {
    width: 1000px;
    height: 660px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.boleto-img-otros[b-otunodacco] {
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.overlay[b-otunodacco] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* === Folio === */
.folio-text[b-otunodacco] {
    position: absolute;
    top: 50px;
    left: 825px;
    font-size: 28px;
    font-weight: 700;
    color: black;
    background: white;
    padding: 3px 10px;
    border-radius: 4px;
}

/* === Código de barras === */
.barcode[b-otunodacco] {
    position: absolute;
    top: 150px;
    right: 100px;
    width: 320px;
    height: 120px;
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
    transform: rotate(-90deg);
    transform-origin: right top;
}

/* === Código QR === */
.qr-code[b-otunodacco] {
    position: absolute;
    bottom: 120px;
    left: 45px;
    width: 110px;
    height: 110px;
    background-color: #fff;
    border-radius: 6px;
    padding: 5px;
}
/* ========== 📒 TABLET (768px - 1024px) ========== */
@media (min-width: 768px) and (max-width: 1024px) {
    .boleto-wrapper[b-otunodacco] {
        flex-direction: column;
        align-items: center;
    }

    .boleto-container[b-otunodacco] {
        position: relative;
        width: 650px; /* antes 750px */
        height: 430px; /* proporcional al ancho */
        margin-bottom: 20px;
    }

    .boleto-container-reverso[b-otunodacco] {
        position: relative;
        margin-top: 10px;
    }

    .boleto-img[b-otunodacco] {
        width: 650px;
        height: 430px;
    }

    .boleto-img-otros[b-otunodacco] {
        max-height: 280px;
        object-fit: cover;
        border-radius: 4px;
    }

    /* === Folio === */
    .folio-text[b-otunodacco] {
        top: 33px; /* ajustado proporcionalmente */
        left: 535px;
        font-size: 18px; /* antes 22px */
        padding: 2px 6px;
    }

    /* === Código de barras === */
    .barcode[b-otunodacco] {
        top: 100px;
        right: 60px;
        width: 210px; /* antes 240px */
        height: 80px;
        transform: rotate(-90deg);
        transform-origin: right top;
    }

    /* === Código QR === */
    .qr-code[b-otunodacco] {
        bottom: 80px;
        left: 20px;
        width: 80px;
        height: 80px;
        padding: 3px;
    }
}

/* ========== 📱 MÓVIL (<=767px) ========== */
@media (max-width: 767px) {
    .boleto-wrapper[b-otunodacco] {
        flex-direction: column;
        align-items: center;
    }

    .boleto-container[b-otunodacco] {
        position: relative;
        width: 380px;
        height: 250px;
        margin-bottom: 15px;
    }

    .boleto-container-reverso[b-otunodacco] {
        position: relative;
        margin-top: 10px;
    }

    .boleto-img[b-otunodacco] {
        width: 380px;
        height: 250px;
    }

    .boleto-img-otros[b-otunodacco] {
        max-height: 180px;
        object-fit: cover;
        border-radius: 4px;
    }

    .folio-text[b-otunodacco] {
        top: 20px;
        left: 310px;
        font-size: 12px;
        padding: 1px 4px;
    }

    .barcode[b-otunodacco] {
        top: 65px;
        right: 40px;
        width: 120px;
        height: 45px;
        transform: rotate(-90deg);
        transform-origin: right top;
    }

    .qr-code[b-otunodacco] {
        bottom: 47px;
        left: 14px;
        width: 45px;
        height: 45px;
        padding: 2px;
    }
}

/* ========== 📱 MÓVIL (<=767px) ========== */
@media (max-width: 470px) {
    .boleto-wrapper[b-otunodacco] {
        flex-direction: column;
        align-items: center;
    }

    .boleto-container[b-otunodacco] {
        position: relative;
        width: 320px; /* antes 380px */
        height: 210px; /* antes 250px */
        margin-bottom: 12px;
    }

    .boleto-container-reverso[b-otunodacco] {
        position: relative;
        margin-top: 8px;
    }

    .boleto-img[b-otunodacco] {
        width: 320px; /* antes 380px */
        height: 210px; /* antes 250px */
    }

    .boleto-img-otros[b-otunodacco] {
        max-height: 150px; /* antes 180px */
        object-fit: cover;
        border-radius: 4px;
    }

    .folio-text[b-otunodacco] {
        top: 15px; /* ajustado proporcionalmente */
        left: 265px; /* antes 310px */
        font-size: 10px;
        padding: 1px 3px;
    }

    .barcode[b-otunodacco] {
        top: 50px;
        right: 32px;
        width: 100px; /* antes 120px */
        height: 38px; /* antes 45px */
        transform: rotate(-90deg);
        transform-origin: right top;
    }

    .qr-code[b-otunodacco] {
        bottom: 37px;
        left: 12px;
        width: 38px; /* antes 45px */
        height: 38px;
        padding: 2px;
    }
}
/* /Pages/User/FolioPreferenteModal.razor.rz.scp.css */
/* ==============
   MODAL OVERLAY
   ============== */
.modal-overlay[b-m7itggf4cd] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* ==============
   MODAL CONTAINER
   ============== */
.modal-container[b-m7itggf4cd] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    padding: 10px;
}

.modal-content[b-m7itggf4cd] {
    width: 100%;
    max-width: 600px; /* Máximo en desktop */
    max-height: 90vh; /* No sobrepasa pantalla */
    overflow-y: auto; /* Scroll interno */
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #00723F; /* Verde UABC */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
}

/* ==============
   MODAL HEADER
   ============== */
.modal-header[b-m7itggf4cd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00723F; /* Verde UABC */
    color: #fff;
    padding: 10px 15px;
    font-weight: bold;
    border-bottom: 2px solid #00723F;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

    .modal-header h5[b-m7itggf4cd] {
        margin: 0;
        font-size: 16px;
    }

.close-button[b-m7itggf4cd] {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

/* ==============
   MODAL BODY
   ============== */
.modal-body[b-m7itggf4cd] {
    padding: 15px;
}

.modal-label[b-m7itggf4cd] {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #00723F;
}

.modal-input[b-m7itggf4cd],
.form-control.custom-input[b-m7itggf4cd],
.form-select.custom-input[b-m7itggf4cd] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .modal-input:focus[b-m7itggf4cd],
    .form-control.custom-input:focus[b-m7itggf4cd],
    .form-select.custom-input:focus[b-m7itggf4cd] {
        border-color: #DD971A;
        box-shadow: 0 0 5px #DD971A;
        outline: none;
    }

/* ==============
   MODAL FOOTER
   ============== */
.modal-footer[b-m7itggf4cd] {
    display: flex;
    justify-content: flex-end;
    padding: 10px 15px;
    border-top: 1px solid #eee;
}

/* Botones consistentes */
.custom-primary-btn[b-m7itggf4cd] {
    background-color: #DD971A;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    margin-left: 8px;
}

    .custom-primary-btn:hover[b-m7itggf4cd] {
        background-color: #b87a13;
        color: #ffffff;
    }

.custom-secondary-btn[b-m7itggf4cd] {
    background-color: #00723F;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    margin-left: 8px;
}

    .custom-secondary-btn:hover[b-m7itggf4cd] {
        background-color: #005a2e;
        color: #ffffff;
    }

.close-button[b-m7itggf4cd] {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* =======================
   RESPONSIVIDAD MÓVIL
   ======================= */
@media (max-width: 768px) {
    .modal-container[b-m7itggf4cd] {
        align-items: flex-end; /* Modal desde abajo */
        padding: 0;
    }

    .modal-content[b-m7itggf4cd] {
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
        border: none;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
        animation: slideUp-b-m7itggf4cd 0.3s ease-out forwards;
        position: relative;
    }

    .modal-header[b-m7itggf4cd] {
        border-radius: 16px 16px 0 0;
        font-size: 15px;
        padding: 12px;
    }

    .modal-body[b-m7itggf4cd] {
        padding: 15px;
        font-size: 14px;
    }

    .modal-footer[b-m7itggf4cd] {
        padding: 10px 15px;
    }

        /* Botones ancho completo */
        .modal-footer .custom-primary-btn[b-m7itggf4cd],
        .modal-footer .custom-secondary-btn[b-m7itggf4cd] {
            flex: 1;
            margin: 5px;
            font-size: 15px;
            padding: 12px;
        }

    /* Animación de cierre */
    .modal-content.closing[b-m7itggf4cd] {
        animation: slideDown-b-m7itggf4cd 0.25s ease-in forwards;
    }
}

/* =======================
   ANIMACIONES
   ======================= */
@keyframes slideUp-b-m7itggf4cd {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideDown-b-m7itggf4cd {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}
/* /Pages/User/FoliosPreferentesPage.razor.rz.scp.css */
/* =======================
   CARD & HEADER DESKTOP
   ======================= */
.custom-card[b-e4gdvevrt8] {
    background-color: #ffffff;
    border: 2px solid #00723F;
    border-radius: 8px;
}

.custom-card-header[b-e4gdvevrt8] {
    background-color: #00723F;
    color: #ffffff;
    padding: 10px;
    font-weight: bold;
    border-bottom: 2px solid #00723F;
}

/* =======================
   TABLAS
   ======================= */
.custom-table[b-e4gdvevrt8] {
    border: 1px solid #ccc;
    border-radius: 8px;
    border-collapse: collapse;
}

.custom-table-header[b-e4gdvevrt8] {
    background-color: #00723F;
    color: #ffffff;
}

.custom-table tbody tr:nth-child(odd)[b-e4gdvevrt8] {
    background-color: #f9f9f9;
}

.custom-table tbody tr:nth-child(even)[b-e4gdvevrt8] {
    background-color: #ffffff;
}

.custom-table tbody tr:hover[b-e4gdvevrt8] {
    background-color: #DD971A;
    color: #ffffff;
}

/* =======================
   BOTONES
   ======================= */
.custom-primary-btn[b-e4gdvevrt8] {
    background-color: #00723F;
    color: #ffffff;
    border: none;
    font-weight: bold;
}

    .custom-primary-btn:hover[b-e4gdvevrt8] {
        background-color: #005a2e;
    }

.custom-danger-btn[b-e4gdvevrt8] {
    background-color: #d9534f;
    color: #ffffff;
    border: none;
    font-weight: bold;
}

    .custom-danger-btn:hover[b-e4gdvevrt8] {
        background-color: #c9302c;
        color: #ffffff;
    }

/* =======================
   RESPONSIVIDAD MÓVIL
   ======================= */
@media (max-width: 768px) {

    /* Card más limpio */
    .custom-card[b-e4gdvevrt8] {
        border: none;
    }

    .custom-card-header[b-e4gdvevrt8] {
        background-color: transparent;
        border-bottom: none;
        color: #00723F;
        font-size: 16px;
        padding: 10px 0;
        margin-left: 15px;
        margin-right: 15px;
    }

    /* Ocultamos la tabla */
    .custom-table[b-e4gdvevrt8] {
        display: none;
    }

    /* Tarjetas de folios */
    .folio-card[b-e4gdvevrt8] {
        background: #ffffff;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
    }

        .folio-card strong[b-e4gdvevrt8] {
            color: #00723F;
        }

        .folio-card .acciones[b-e4gdvevrt8] {
            display: flex;
            justify-content: flex-end;
            margin-top: 10px;
        }

    /* Botón agregar folio ancho completo */
    .d-flex.justify-content-end[b-e4gdvevrt8] {
        justify-content: center !important;
    }

    .custom-primary-btn[b-e4gdvevrt8] {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

/* =======================
   EXTRA SMALL <480px
   ======================= */
@media (max-width: 480px) {
    .custom-primary-btn[b-e4gdvevrt8] {
        font-size: 15px;
    }

    .custom-danger-btn[b-e4gdvevrt8] {
        font-size: 14px;
        padding: 10px;
    }
}
/* /Pages/User/InformacionAdicionalPage.razor.rz.scp.css */
/* =======================
   CARD & HEADER DESKTOP
   ======================= */
.custom-card[b-s5evyz7pg1] {
    background-color: #ffffff;
    border: 2px solid #00723F;
    border-radius: 8px;
}

.custom-card-header[b-s5evyz7pg1] {
    background-color: #00723F;
    color: #ffffff;
    padding: 10px;
    font-weight: bold;
    border-bottom: 2px solid #00723F;
}

/* =======================
   INPUTS & SELECTS
   ======================= */
.custom-input[b-s5evyz7pg1] {
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .custom-input:focus[b-s5evyz7pg1] {
        border-color: #DD971A;
        box-shadow: 0 0 5px #DD971A;
        outline: none;
    }

/* =======================
   BOTONES
   ======================= */
.custom-primary-btn[b-s5evyz7pg1] {
    background-color: #00723F;
    color: #ffffff;
    border: none;
}

    .custom-primary-btn:hover[b-s5evyz7pg1] {
        background-color: #005a2e;
        color: #ffffff;
    }

/* =======================
   RESPONSIVIDAD MÓVIL
   ======================= */
@media (max-width: 768px) {

    /* Card más limpio en móvil */
    .custom-card[b-s5evyz7pg1] {
        border: none;
    }

    .custom-card-header[b-s5evyz7pg1] {
        background-color: transparent;
        border-bottom: none;
        color: #00723F; /* texto visible en verde */
        font-size: 16px;
        padding: 10px 0;
        margin-left: 15px;
        margin-right: 15px;
    }

    /* Formularios en una sola columna */
    .card-body .row[b-s5evyz7pg1] {
        display: block;
    }

    .card-body .col-md-6[b-s5evyz7pg1] {
        width: 100%;
    }

    /* Inputs más cómodos */
    .form-control.custom-input[b-s5evyz7pg1],
    .form-select.custom-input[b-s5evyz7pg1] {
        padding: 12px;
        font-size: 15px;
    }

    /* Checkbox alineado mejor */
    .form-check-label[b-s5evyz7pg1] {
        font-size: 14px;
        margin-left: 5px;
        color: #00723F;
    }

    /* Botón guardar ancho completo */
    .d-flex.justify-content-end[b-s5evyz7pg1] {
        justify-content: center !important;
    }

    .custom-primary-btn[b-s5evyz7pg1] {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

/* =======================
   EXTRA SMALL <480px
   ======================= */
@media (max-width: 480px) {
    .form-control.custom-input[b-s5evyz7pg1],
    .form-select.custom-input[b-s5evyz7pg1] {
        font-size: 14px;
        padding: 10px;
    }

    .custom-primary-btn[b-s5evyz7pg1] {
        font-size: 15px;
    }
}
.mud-picker-toolbar[b-s5evyz7pg1] {
    background-color: #024731 !important;
    color: white;
}
/* /Pages/User/MisCompradoresModal.razor.rz.scp.css */
/* ==============
   MODAL OVERLAY
   ============== */
.modal-overlay[b-hgg5hw6t1n] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* ==============
   MODAL CONTAINER
   ============== */
.modal-container[b-hgg5hw6t1n] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    padding: 10px;
}

.modal-content[b-hgg5hw6t1n] {
    width: 100%;
    max-width: 600px; /* Máximo en desktop */
    max-height: 90vh; /* No sobrepasa pantalla */
    overflow-y: auto; /* Scroll interno */
    background-color: #fff;
    border-radius: 16px;
    border: 2px solid #00723F; /* Verde UABC */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
}

/* ==============
   MODAL HEADER
   ============== */
.modal-header[b-hgg5hw6t1n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00723F; /* Verde UABC */
    color: #fff;
    padding: 10px 15px;
    font-weight: bold;
    border-bottom: 2px solid #00723F;
}

    .modal-header h5[b-hgg5hw6t1n] {
        margin: 0;
        font-size: 16px;
    }

.close-button[b-hgg5hw6t1n] {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

/* ==============
   MODAL BODY
   ============== */
.modal-body[b-hgg5hw6t1n] {
    padding: 15px;
}

.modal-label[b-hgg5hw6t1n] {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #00723F;
}

.modal-input[b-hgg5hw6t1n],
.form-control.custom-input[b-hgg5hw6t1n],
.form-select.custom-input[b-hgg5hw6t1n] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .modal-input:focus[b-hgg5hw6t1n],
    .form-control.custom-input:focus[b-hgg5hw6t1n],
    .form-select.custom-input:focus[b-hgg5hw6t1n] {
        border-color: #DD971A;
        box-shadow: 0 0 5px #DD971A;
        outline: none;
    }

/* ==============
   MODAL FOOTER
   ============== */
.modal-footer[b-hgg5hw6t1n] {
    display: flex;
    justify-content: flex-end;
    padding: 10px 15px;
    border-top: 1px solid #eee;
}

/* Botones consistentes */
.custom-primary-btn[b-hgg5hw6t1n] {
    background-color: #DD971A;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    margin-left: 8px;
}

    .custom-primary-btn:hover[b-hgg5hw6t1n] {
        background-color: #b87a13;
        color: #ffffff;
    }

.custom-secondary-btn[b-hgg5hw6t1n] {
    background-color: #00723F;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    margin-left: 8px;
}

    .custom-secondary-btn:hover[b-hgg5hw6t1n] {
        background-color: #005a2e;
        color: #ffffff;
    }

.close-button[b-hgg5hw6t1n] {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* =======================
   RESPONSIVIDAD MÓVIL
   ======================= */
@media (max-width: 768px) {
    .modal-container[b-hgg5hw6t1n] {
        align-items: flex-end; /* Modal desde abajo */
        padding: 0;
    }

    .modal-content[b-hgg5hw6t1n] {
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
        border: none;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
        animation: slideUp-b-hgg5hw6t1n 0.3s ease-out forwards;
        position: relative;
    }

    .modal-header[b-hgg5hw6t1n] {
        border-radius: 16px 16px 0 0;
        font-size: 15px;
        padding: 12px;
    }

    .modal-body[b-hgg5hw6t1n] {
        padding: 15px;
        font-size: 14px;
    }

    .modal-footer[b-hgg5hw6t1n] {
        padding: 10px 15px;
    }

        /* Botones ancho completo */
        .modal-footer .custom-primary-btn[b-hgg5hw6t1n],
        .modal-footer .custom-secondary-btn[b-hgg5hw6t1n] {
            flex: 1;
            margin: 5px;
            font-size: 15px;
            padding: 12px;
        }

    /* Animación de cierre */
    .modal-content.closing[b-hgg5hw6t1n] {
        animation: slideDown-b-hgg5hw6t1n 0.25s ease-in forwards;
    }
}

/* =======================
   ANIMACIONES
   ======================= */
@keyframes slideUp-b-hgg5hw6t1n {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideDown-b-hgg5hw6t1n {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}
/* /Pages/User/MisCompradoresPage.razor.rz.scp.css */
/* =======================
   CARD & HEADER DESKTOP
   ======================= */
.custom-card[b-6dzey2v3n3] {
    background-color: #ffffff;
    border: 2px solid #00723F;
    border-radius: 8px;
}

.custom-card-header[b-6dzey2v3n3] {
    background-color: #00723F;
    color: #ffffff;
    padding: 10px;
    font-weight: bold;
    border-bottom: 2px solid #00723F;
}

/* =======================
   TABLAS
   ======================= */
.custom-table[b-6dzey2v3n3] {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.custom-table-header[b-6dzey2v3n3] {
    background-color: #00723F;
    color: #ffffff;
}

.custom-table tbody tr:nth-child(odd)[b-6dzey2v3n3] {
    background-color: #f9f9f9;
}

.custom-table tbody tr:nth-child(even)[b-6dzey2v3n3] {
    background-color: #ffffff;
}

.custom-table tbody tr:hover[b-6dzey2v3n3] {
    background-color: #DD971A;
    color: #ffffff;
}

/* =======================
   BOTONES
   ======================= */
.custom-primary-btn[b-6dzey2v3n3] {
    background-color: #00723F;
    color: #ffffff;
    border: none;
    font-weight: bold;
}

    .custom-primary-btn:hover[b-6dzey2v3n3] {
        background-color: #005a2e;
    }

.custom-secondary-btn[b-6dzey2v3n3] {
    background-color: #DD971A;
    color: #ffffff;
    border: none;
    font-weight: bold;
}

    .custom-secondary-btn:hover[b-6dzey2v3n3] {
        background-color: #b87a13;
        color: #ffffff;
    }

.custom-danger-btn[b-6dzey2v3n3] {
    background-color: #d9534f;
    color: #ffffff;
    border: none;
    font-weight: bold;
}

    .custom-danger-btn:hover[b-6dzey2v3n3] {
        background-color: #c9302c;
        color: #ffffff;
    }

/* =======================
   RESPONSIVIDAD MÓVIL
   ======================= */
@media (max-width: 768px) {

    /* Card más limpio */
    .custom-card[b-6dzey2v3n3] {
        border: none;
    }

    .custom-card-header[b-6dzey2v3n3] {
        background-color: transparent;
        border-bottom: none;
        color: #00723F;
        font-size: 16px;
        padding: 10px 0;
        margin-left: 15px;
        margin-right: 15px;
    }

    /* La tabla desaparece en móvil, usamos tarjetas */
    .custom-table[b-6dzey2v3n3] {
        display: none;
    }

    /* Tarjeta estilo móvil para cada comprador */
    .comprador-card[b-6dzey2v3n3] {
        background: #ffffff;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
    }

        .comprador-card strong[b-6dzey2v3n3] {
            color: #00723F;
        }

        .comprador-card .acciones[b-6dzey2v3n3] {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }

        .comprador-card button[b-6dzey2v3n3] {
            flex: 1;
            margin: 0 5px;
        }

    /* Botón "Agregar comprador" ancho completo */
    .d-flex.justify-content-end[b-6dzey2v3n3] {
        justify-content: center !important;
    }

    .custom-primary-btn[b-6dzey2v3n3] {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

/* =======================
   EXTRA SMALL <480px
   ======================= */
@media (max-width: 480px) {
    .custom-primary-btn[b-6dzey2v3n3] {
        font-size: 15px;
    }

    .custom-secondary-btn[b-6dzey2v3n3],
    .custom-danger-btn[b-6dzey2v3n3] {
        font-size: 14px;
        padding: 10px;
    }
}
/* /Pages/User/UserProfilePage.razor.rz.scp.css */
/* =======================
   HEADER GLOBAL DEL PERFIL
   ======================= */
.user-header-global[b-wm7nrny2ot] {
    background-color: #00723F; /* Verde UABC */
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 18px;
}

/* =======================
   NAV TABS (Desktop)
   ======================= */
.nav-link-profile[b-wm7nrny2ot] {
    color: #00723F; /* Verde inactivo */
    background-color: white;
    border: 1px solid #DD971A; /* Ámbar borde */
    border-radius: 3px;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .nav-link-profile:hover[b-wm7nrny2ot] {
        background-color: #DD971A;
        color: white;
    }

    .nav-link-profile.active[b-wm7nrny2ot] {
        background-color: #00723F;
        color: white;
        font-weight: bold;
        border-color: #00723F;
    }

.margen-responsivo[b-wm7nrny2ot] {
    margin-top: 32px;
    margin-bottom: 32px;
}

/* =======================
   FORMULARIOS E INPUTS
   ======================= */
.custom-input[b-wm7nrny2ot] {
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .custom-input:focus[b-wm7nrny2ot] {
        border-color: #DD971A;
        box-shadow: 0 0 5px #DD971A;
        outline: none;
    }

/* =======================
   TABLAS PERSONALIZADAS
   ======================= */
.custom-table[b-wm7nrny2ot] {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.custom-table-header[b-wm7nrny2ot] {
    background-color: #00723F;
    color: #ffffff;
}

.custom-table tbody tr:nth-child(odd)[b-wm7nrny2ot] {
    background-color: #f9f9f9;
}

.custom-table tbody tr:nth-child(even)[b-wm7nrny2ot] {
    background-color: #ffffff;
}

.custom-table tbody tr:hover[b-wm7nrny2ot] {
    background-color: #DD971A;
    color: #ffffff;
}

/* =======================
   BOTONES
   ======================= */
.custom-primary-btn[b-wm7nrny2ot] {
    background-color: #00723F;
    color: #ffffff;
    border: none;
}

    .custom-primary-btn:hover[b-wm7nrny2ot] {
        background-color: #005a2e;
        color: #ffffff;
    }

.custom-secondary-btn[b-wm7nrny2ot] {
    background-color: #DD971A;
    color: #ffffff;
    border: none;
}

    .custom-secondary-btn:hover[b-wm7nrny2ot] {
        background-color: #b87a13;
        color: #ffffff;
    }

/* =======================
   RESPONSIVIDAD MÓVIL
   ======================= */
@media (max-width: 768px) {

    .margen-responsivo[b-wm7nrny2ot] {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    /* Header móvil con nombre del usuario */
    .user-header-mobile[b-wm7nrny2ot] {
        background-color: #00723F; /* Verde UABC */
        color: white;
        text-align: center;
        font-weight: bold;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 6px;
        font-size: 16px;
    }

    /* Header global más compacto */
    .user-header-global[b-wm7nrny2ot] {
        font-size: 16px;
        padding: 12px;
        border-radius: 4px;
    }

    /* Tabs en grid 2x2 */
    .nav.nav-tabs[b-wm7nrny2ot] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        border-bottom: none;
        padding: 10px;
    }

    .nav-link-profile[b-wm7nrny2ot] {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 25px;
        padding: 12px;
        font-size: 14px;
        font-weight: bold;
        background-color: #f5f5f5;
        border: 2px solid #DD971A;
        color: #00723F;
    }

        .nav-link-profile.active[b-wm7nrny2ot] {
            background-color: #00723F;
            color: white;
            border-color: #00723F;
        }

    /* Card adaptada */
    .custom-card[b-wm7nrny2ot] {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    /* Formularios en una sola columna */
    .card-body .row[b-wm7nrny2ot] {
        display: block;
    }

    .card-body .col-md-6[b-wm7nrny2ot] {
        width: 100%;
    }

    /* Botón guardar ancho completo */
    .d-flex.justify-content-end[b-wm7nrny2ot] {
        justify-content: center !important;
    }

    .custom-primary-btn[b-wm7nrny2ot] {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

/* =======================
   EXTRA SMALL <480px
   ======================= */
@media (max-width: 480px) {
    .custom-input[b-wm7nrny2ot] {
        font-size: 14px;
        padding: 10px;
    }

    .custom-primary-btn[b-wm7nrny2ot] {
        font-size: 15px;
    }
}
.mud-picker-toolbar[b-wm7nrny2ot] {
    background-color: #024731 !important;
    color: white;
}
/* /Shared/AuthLinks.razor.rz.scp.css */
.warning-icon[b-0mdis2tsvi] {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

 .warning-icon i[b-0mdis2tsvi] {
     margin-right: 5px;
 }
/* /Shared/Carrito.razor.rz.scp.css */

.shopping-cart[b-t645cc8uhu] {
    top: 130px;
    right: 20px;
    background-color: white;
    padding: 10px;
    padding-top: 20px;
}

.Cart-icon[b-t645cc8uhu],
.Cart-icon-moved[b-t645cc8uhu] {
    position: fixed;
    transition: right 0.2s ease-in-out, left 0.2s ease-in-out; /* Transition for left/right property */
}

.Cart-icon[b-t645cc8uhu] {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 999997;
}

.Cart-icon-moved[b-t645cc8uhu] {
    position: fixed;
    top: 70px;
    right: 250px;
    z-index: 999997;
}

.Cart[b-t645cc8uhu] {
    position:fixed;
    transition: right 1s ease-in-out, left 1s ease-in-out;
}

.Alerta[b-t645cc8uhu] {
    position: fixed;
    z-index: 999997;
}

.cart-item-count[b-t645cc8uhu] {
    position: fixed;
    top: 70px;
    right: 20px;
    background-color: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    z-index: 999997;
    transition: right 0.2s ease-in-out, left 0.2s ease-in-out;
}
.cart-item-count-moved[b-t645cc8uhu] {
    position: fixed;
    top: 70px;
    right: 250px;
    background-color: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    z-index: 999997;
    transition: right 0.2s ease-in-out, left 0.2s ease-in-out;
}

.cart-header[b-t645cc8uhu] {
    background-color: #00723F;
    color: white;
}

.sorteo-card[b-t645cc8uhu] {
    background-color: #f9f9f9;
}

.cart-summary h6[b-t645cc8uhu], .cart-summary h5[b-t645cc8uhu] {
    margin: 4px 0;
}

.boleto-item[b-t645cc8uhu] {
    font-size: 0.9rem;
}

.mud-alert[b-t645cc8uhu] {
    font-weight: 500;
    background-color: #efba00 !important;
    color: #333 !important;
    border-radius: 8px;
}

.checkout-footer[b-t645cc8uhu] {
    position: sticky;
    bottom: 0;
    background-color: white;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
    z-index: 10;
}

.Cart[b-t645cc8uhu] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.MudDrawerContainer[b-t645cc8uhu] {
    flex: 1;
    overflow-y: auto;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-tq4rjdaazt] {
    position: relative;
    display: flex;
    flex-direction: column; 
}

main[b-tq4rjdaazt] {
    flex: 1;
}

.sidebar[b-tq4rjdaazt] {
    background-image: linear-gradient(180deg, #00723F 0%, #00472B 70%);
   /* background-color: #00723F;*/
}

.top-row[b-tq4rjdaazt] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-tq4rjdaazt]  a, .top-row[b-tq4rjdaazt]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-tq4rjdaazt]  a:hover, .top-row[b-tq4rjdaazt]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-tq4rjdaazt]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }


/* Overlay m�vil */
#loading-overlay[b-tq4rjdaazt] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none; /* por defecto oculto */
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.overlay-content[b-tq4rjdaazt] {
    text-align: center;
    color: white;
}

/* ================================
   Responsive control
   ================================ */
.desktop-only-spin[b-tq4rjdaazt] {
    display: block;
}

.mobile-only-spin[b-tq4rjdaazt] {
    display: none;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-tq4rjdaazt] {
        display: none;
    }

    .top-row.auth[b-tq4rjdaazt] {
        justify-content: space-between;
    }

    .top-row[b-tq4rjdaazt]  a, .top-row[b-tq4rjdaazt]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-tq4rjdaazt] {
        flex-direction: row;
    }

    .sidebar[b-tq4rjdaazt] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-tq4rjdaazt] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-tq4rjdaazt]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-tq4rjdaazt], article[b-tq4rjdaazt] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .desktop-only-spin[b-tq4rjdaazt] {
        display: none !important;
    }

    .mobile-only-spin[b-tq4rjdaazt] {
        display: flex !important; /* overlay activo en m�vil */
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-4w7iaygiyw] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-4w7iaygiyw] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-4w7iaygiyw] {
    font-size: 1.1rem;
}

.oi[b-4w7iaygiyw] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

/* ====== PC NAV ====== */
.nav-item[b-4w7iaygiyw] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-4w7iaygiyw] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-4w7iaygiyw] {
        padding-bottom: 1rem;
    }

    .nav-item[b-4w7iaygiyw]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        padding: 0 12px;
    }

        .nav-item[b-4w7iaygiyw]  a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .nav-item[b-4w7iaygiyw]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

/* ===== Overlay para m�vil ===== */
.menu-overlay-mobile[b-4w7iaygiyw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: block; /* solo se agrega en el DOM cuando el men� est� abierto */
}

/* ===== Breakpoints ===== */
@media (min-width: 641px) {
    .navbar-toggler[b-4w7iaygiyw] {
        display: none;
    }

    .collapse[b-4w7iaygiyw] {
        /* Nunca colapsar en escritorio */
        display: block;
    }

    .nav-scrollable[b-4w7iaygiyw] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Footer absoluto (PC) */
.nav-footer[b-4w7iaygiyw] {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* Por defecto: muestra desktop, oculta m�vil */
.desktop-only[b-4w7iaygiyw] {
    display: block !important;
}

.mobile-only[b-4w7iaygiyw] {
    display: none !important;
}

/* Quitamos el viejo footer m�vil */
.nav-footer-mobile[b-4w7iaygiyw] {
    display: none !important;
}

/* ====== MOBILE ====== */
@media (max-width: 576px) {
    .desktop-only[b-4w7iaygiyw] {
        display: none !important;
    }

    .mobile-only[b-4w7iaygiyw] {
        display: block !important;
    }

    .nav-footer[b-4w7iaygiyw] {
        display: none !important;
    }
}

/* ===== Overlay gen�rico ===== */
.menu-overlay[b-4w7iaygiyw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

    .menu-overlay.show[b-4w7iaygiyw] {
        display: block;
    }

/* ===== Sidebar derecho (M�vil) ===== */
.side-menu[b-4w7iaygiyw] {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

    .side-menu.open[b-4w7iaygiyw] {
        right: 0;
    }

.side-menu-header[b-4w7iaygiyw] {
    background: #00723F;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn[b-4w7iaygiyw] {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* ===== Opciones del men� m�vil ===== */
.nav-item-mobile[b-4w7iaygiyw] {
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

.nav-link-mobile[b-4w7iaygiyw] {
    display: flex; /* igual que en PC */
    align-items: center; /* centra �conos/texto */
    height: 3rem; /* misma altura que PC */
    line-height: 3rem;
    padding: 0 12px;
    border-radius: 4px;
    color: #00723F; /* Verde UABC */
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

    .nav-link-mobile:hover[b-4w7iaygiyw],
    .nav-link-mobile.active[b-4w7iaygiyw] {
        background: #DD971A; /* Mostaza */
        color: #DD971A !important;
    }

.nav-item-mobile[b-4w7iaygiyw]  a {
    color: #00723F;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    padding: 0 12px;
}

    .nav-item-mobile[b-4w7iaygiyw]  a.active {
        background-color: rgba(255,255,255,0.25);
        color: #DD971A;
    }

    .nav-item-mobile[b-4w7iaygiyw]  a:hover {
        background-color: rgba(255,255,255,0.1);
        color: #DD971A;
    }

/* ===== Solo m�vil ===== */
@media (min-width: 577px) {
    .side-menu[b-4w7iaygiyw],
    .menu-overlay[b-4w7iaygiyw],
    .menu-overlay-mobile[b-4w7iaygiyw] {
        display: none !important;
    }
}
/* /Shared/Pagination.razor.rz.scp.css */
