/* /Layout/Administracion/Certificacion/Menu.razor.rz.scp.css */
body[b-z7ladjl4kx] {
}
/* /Layout/Administracion/Contables/Compras.razor.rz.scp.css */
body[b-a9gigv71m5] {
}

.selected[b-a9gigv71m5] {
    background: linear-gradient(to bottom, #e0f0ff, #c0e0ff); /* azul muy suave */
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1), inset -2px -2px 5px rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease-in-out;
    border: none !important;
}
/* /Layout/Administracion/Facturacion/Emision.razor.rz.scp.css */
body[b-tslciwv3i1] {
}

/* /Layout/Administracion/Sidebar.razor.rz.scp.css */

/* --------------------------------
   Tipografía y Utilidades Generales
   -------------------------------- */
.poppins-regular[b-sahq7utjaz] {
    color: #B4B4B4;
}

.massaben[b-sahq7utjaz] {
    font-weight: 500;
    font-size: 1.2rem;
}

/* ----------------------------
   Sidebar Contenedor Principal
   ---------------------------- */
.sidebar[b-sahq7utjaz] {
    position: fixed;
    height: 100%;
    width: 250px;
    top: 0;
    background: var(--bg-sidebar);
    z-index: 50;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid #254065;
}

[data-theme='dark'] .sidebar[b-sahq7utjaz] {
    border-right: 1px solid var(--border-color);
}

    .sidebar.retraido[b-sahq7utjaz] {
        justify-content: center;
        width: 80px;
    }

    .sidebar .menu-bar[b-sahq7utjaz] {
        overflow-y: auto;
        overflow-x: hidden;
        height: calc(100% - 60px);
    }

    .sidebar .toggle[b-sahq7utjaz] {
        position: absolute;
        top: 25px;
        right: -12px;
        transform: translateY(-50%) rotate(180deg);
        height: 26px;
        width: 26px;
        background: #0049D4;
        border: 2px solid #0078D4;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        cursor: pointer;
    }

    .sidebar.retraido .toggle[b-sahq7utjaz] {
        transform: translateY(-50%) rotate(0deg);
    }

    /* ----------------------------
        Elementos de Navegación
       ---------------------------- */

    .sidebar li[b-sahq7utjaz] {
        margin-top: 10px;
        padding: 5px;
        height: 40px;
        display: flex;
        align-items: center;
    }

        .sidebar li:hover[b-sahq7utjaz] {
            background: #254065;
        }

    .sidebar.retraido li[b-sahq7utjaz] {
        padding: 0;
    }

[b-sahq7utjaz] .nav-link.nav-sidebar {
    border-radius: 8px;
    color: #B4B4B4;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    transition: color var(--tran-ease);
}

.icon[b-sahq7utjaz] {
    color: #CDCDCD;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    min-width: 35px;
    transition: color var(--tran-ease);
}

.nav-text[b-sahq7utjaz], .sidebar .text[b-sahq7utjaz] {
    font-size: 15px;
    white-space: nowrap;
}

.sidebar .text[b-sahq7utjaz] {
    display: block;
    overflow: hidden;
    opacity: 1;
}

.sidebar.retraido .icon[b-sahq7utjaz] {
    margin-left: 5px;
}

.sidebar.retraido .text[b-sahq7utjaz] {
    opacity: 0;
    width: 0;
    pointer-events: none;
}

[b-sahq7utjaz] .nav-link.nav-sidebar.active .icon,
[b-sahq7utjaz] .nav-link.nav-sidebar.active i {
    color: #50CFC1;
    font-size: 1.2rem;
}

[b-sahq7utjaz] .nav-link.nav-sidebar.active .text {
    color: #F8F8F8;
}

/* ----------------------------
   Toggle Switch (Modo Oscuro)
 ------------------------------ */
.sidebar li.mode[b-sahq7utjaz] {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 20px;
}

.toggle-switch[b-sahq7utjaz] {
    right: 20px;
    height: 100%;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.switch[b-sahq7utjaz] {
    position: relative;
    height: 18px;
    width: 34px;
    border-radius: 25px;
    background-color: #50CFC1;
    transition: background var(--tran-ease);
}

    .switch[b-sahq7utjaz]::before {
        content: '';
        position: absolute;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        top: 50%;
        left: 4px;
        transform: translateY(-50%);
        background-color: white;
        transition: left var(--tran-03);
    }

    .switch.active[b-sahq7utjaz] {
        background-color: #1C1C1C;
    }

        .switch.active[b-sahq7utjaz]::before {
            left: 18px;
            background-color: #50CFC1;
        }

.sidebar.retraido .sun-moon[b-sahq7utjaz] {
    display: none;
}

/* --------------------------
   Home y Contenido Principal
   -------------------------- */
.home[b-sahq7utjaz] {
    position: relative;
    left: 250px;
    width: calc(100% - 250px);
    height: 100vh;
    background-color: var(--body-color);
    overflow-x: hidden;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .home.full-width[b-sahq7utjaz] {
        left: 80px;
        width: calc(100% - 80px);
    }

.home-content[b-sahq7utjaz] {
    height: 100vh; 
}

/* ---------------------------
   Top Bar y Botón Menú Mobile
   --------------------------- */
.top-bar[b-sahq7utjaz] {
    background: var(--bg-sidebar);
    padding: 0 15px;
    height: 50px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
    display: none;
}

.menu-toggle[b-sahq7utjaz] {
    font-size: 1.6rem;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

    .menu-toggle:hover[b-sahq7utjaz] {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }

    .menu-toggle:active[b-sahq7utjaz] {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.95);
    }

    .menu-toggle:focus[b-sahq7utjaz] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(52, 129, 244, 0.5);
    }

/* -----------------------
   Scrollbar Personalizado
   ----------------------- */
.sidebar .menu-bar[b-sahq7utjaz]::-webkit-scrollbar {
    width: 2px;
}

.sidebar .menu-bar[b-sahq7utjaz]::-webkit-scrollbar-thumb {
    background-color: #3481F4;
    border-radius: 10px;
    background-clip: content-box;
}

/* ----------------------
   Media Queries (Mobile)
   ----------------------- */
@media (max-width: 991px) {
    .top-bar[b-sahq7utjaz] {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        z-index: 49;
    }

    .sidebar .toggle[b-sahq7utjaz] {
        visibility: collapse;
    }

    .sidebar[b-sahq7utjaz] {
        opacity: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        .sidebar.visible[b-sahq7utjaz] {
            transform: translateX(0);
            opacity: 1;
            z-index: 50;
        }

    .home[b-sahq7utjaz], .home.full-width[b-sahq7utjaz] {
        left: 0;
        width: 100%;
    }

    .home-content[b-sahq7utjaz] {
        height: calc(100vh - 50px);
    }
}
/* /Layout/Administracion/Whatsapp/Menu.razor.rz.scp.css */
body[b-grepw56q0t] {
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ag86n8ce1r] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-ag86n8ce1r] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ag86n8ce1r] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ag86n8ce1r] {
    font-size: 1.1rem;
}

.bi[b-ag86n8ce1r] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ag86n8ce1r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ag86n8ce1r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ag86n8ce1r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ag86n8ce1r] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ag86n8ce1r] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ag86n8ce1r] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ag86n8ce1r]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-ag86n8ce1r]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ag86n8ce1r]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-ag86n8ce1r] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ag86n8ce1r] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ag86n8ce1r] {
        display: none;
    }

    .nav-scrollable[b-ag86n8ce1r] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Modal/Certificacion/Ingreso.razor.rz.scp.css */
/* /Modal/Contactos/Contacto.razor.rz.scp.css */
body[b-yuza46ne4c] {
}
/* Dropdown mejorado */
.dropdown-menu[b-yuza46ne4c] {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    margin-top: 2px;
    z-index: 1050;
}

.dropdown-item[b-yuza46ne4c] {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #f8f9fa;
}

    .dropdown-item:hover[b-yuza46ne4c] {
        background-color: #f8f9fa;
        color: #495057;
    }

    .dropdown-item:last-child[b-yuza46ne4c] {
        border-bottom: none;
    }

/* Checkboxes alineados */
.form-check-input[b-yuza46ne4c] {
    width: 1.1em;
    height: 1.1em;
    margin-top: 0.1em;
}

    .form-check-input:checked[b-yuza46ne4c] {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

/* Labels pequeños */
.form-label.small[b-yuza46ne4c] {
    font-size: 0.8rem;
    font-weight: 500;
}

.check-card[b-yuza46ne4c] {
    padding: 6px 12px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    user-select: none;
}

    .check-card i[b-yuza46ne4c]{
        font-size: 0.9rem;
    }

    .check-card.whatsapp.active[b-yuza46ne4c] {
        background-color: #00E400; /* azul muy suave */
        color: white;
    }
    .check-card.principal.active[b-yuza46ne4c] {
        background-color: #FFB800; /* azul muy suave */
        color: white;
    }

.hidden-checkbox[b-yuza46ne4c] {
    display: none;
}


    .telefonos-container[b-yuza46ne4c]::-webkit-scrollbar {
        width: 6px;
    }

    .telefonos-container[b-yuza46ne4c]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .telefonos-container[b-yuza46ne4c]::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }

        .telefonos-container[b-yuza46ne4c]::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
/* /Modal/Facturacion/ResumenDiario.razor.rz.scp.css */
body[b-098sqhrxwj] {
}

.bg-light-warning[b-098sqhrxwj] {
    background-color: #fff3cd;
    border: 1px solid #ffecb5;
}

.modal-body ul li[b-098sqhrxwj] {
    padding: 3px 0;
}

.btn-outline-secondary[b-098sqhrxwj] {
    transition: all 0.2s;
}

    .btn-outline-secondary:hover[b-098sqhrxwj] {
        background-color: #FF0063;
    }
/* /Modal/Genericos/Eliminacion.razor.rz.scp.css */
body[b-jkckvzybms] {
}

[b-jkckvzybms] .password-box {
    border: 1px solid #ccc;
    border-left: 4px solid #007bff;
    border-radius: 6px;
    padding: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    background-color: #fdfdfd;
    font-size: 0.95rem;
}

    [b-jkckvzybms] .password-box.error {
        border-left: 4px solid #dc3545;
        box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15);
        background-color: #fff5f5;
    }
/* /Modal/Planes/GestionarPlan.razor.rz.scp.css */
body[b-u1d0x6mjy5] {
}

.editable-label[b-u1d0x6mjy5] {
    border-bottom: 1px solid #0d6efd;
    padding-bottom: 2px;
    cursor: text;
    outline: none;
}

    .editable-label:focus[b-u1d0x6mjy5] {
        border-bottom: 2px solid #0b5ed7;
    }
/* /Modal/Tramites/Detalles.razor.rz.scp.css */
body[b-sl560kdpwa] {
}
.modal-body[b-sl560kdpwa] {
    font-size: 0.9rem;
}
/* /Modal/Tramites/Observaciones.razor.rz.scp.css */
body[b-syjjcvi8yo] {
}
/* /Modal/Whatsapp/Etiqueta.razor.rz.scp.css */

:root[b-odd3e06r1q] {
    --wa-green: #00a884;
    --wa-bg-light: #f0f2f5;
    --wa-line: #e9edef;
}

.x-small[b-odd3e06r1q] {
    font-size: 0.72rem;
}

.ls-1[b-odd3e06r1q] {
    letter-spacing: 0.5px;
}

.color-picker-container[b-odd3e06r1q] {
    position: relative;
    width: 48px;
    height: 48px;
}

.tag-circle[b-odd3e06r1q] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    pointer-events: none;
}

.color-input-hidden[b-odd3e06r1q] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

[b-odd3e06r1q] .minimal-input {
    border: none;
    border-bottom: 1px solid #E2E2E2;
    border-radius: 0;
    transition: border-color 0.3s;
    box-shadow: none;
}

    [b-odd3e06r1q] .minimal-input:focus {
        border-bottom: 3px solid #00a884;
    }

.presets-section[b-odd3e06r1q] {
    border: 1px solid #E2E2E2;
}

.btn-preset[b-odd3e06r1q] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

    .btn-preset:hover[b-odd3e06r1q] {
        transform: scale(1.15);
    }

    .btn-preset.active[b-odd3e06r1q] {
        border-color: #333;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

.scale-in[b-odd3e06r1q] {
    animation: scaleIn-b-odd3e06r1q 0.2s forwards;
    font-size: 0.75rem;
}

@keyframes scaleIn-b-odd3e06r1q {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.custom-textarea[b-odd3e06r1q] {
    background-color: var(--wa-bg-light);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px;
    font-size: 0.9rem;
    resize: none;
    transition: all 0.2s;
}

    .custom-textarea:focus[b-odd3e06r1q] {
        background-color: #fff;
        border-color: var(--wa-green);
        box-shadow: 0 0 0 1px var(--wa-green);
        outline: none;
    }
/* /Modal/Whatsapp/EtiquetarChats.razor.rz.scp.css */
body[b-ex7xgvr1lp] {
}

.tag-circle-sm[b-ex7xgvr1lp] {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-check[b-ex7xgvr1lp] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

    .custom-check:checked[b-ex7xgvr1lp] {
        background-color: #00a884;
        border-color: #00a884;
    }

.cursor-pointer[b-ex7xgvr1lp] {
    cursor: pointer;
}

.x-small[b-ex7xgvr1lp] {
    font-size: 0.75rem;
}
/* /Pages/Administracion/Certificacion/Expedicion.razor.rz.scp.css */
body[b-gfj5iq7039] {
}

/*--------------------------
    Targetas de Disponibles
---------------------------*/
.bg-soft-primary[b-gfj5iq7039] {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.bg-soft-success[b-gfj5iq7039] {
    background-color: #e1f7ed;
    color: #198754;
}

.bg-soft-info[b-gfj5iq7039] {
    background-color: #e1f6fc;
    color: #0dcaf0;
}

.icon-shape[b-gfj5iq7039] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.custom-card[b-gfj5iq7039] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 15px;
    background: #ffffff;
}

    .custom-card:hover[b-gfj5iq7039] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    }

@media (max-width: 768px) {
    .icon-shape[b-gfj5iq7039] {
        width: 48px;
        height: 48px;
    }
}




/*------------------------
    Resultados Busqueda
-------------------------*/
.search-container[b-gfj5iq7039] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-color: #f0f0f0 !important;
}

.result-row[b-gfj5iq7039] {
    transition: background-color 0.2s ease;
}

    .result-row:hover[b-gfj5iq7039] {
        background-color: #fafafa;
    }

    .result-row:last-child[b-gfj5iq7039] {
        border-bottom: none !important;
    }

.status-indicator[b-gfj5iq7039] {
    width: 4px;
    height: 35px;
    border-radius: 10px;
}

.bg-activo[b-gfj5iq7039] {
    background-color: #2ecc71;
}

.bg-pendiente[b-gfj5iq7039] {
    background-color: #f1c40f;
}

.bg-anulado[b-gfj5iq7039] {
    background-color: #e74c3c;
}

/*----------------------
        Estados 
------------------------*/
.badge[b-gfj5iq7039]{
    font-size: 0.8rem;
}
.Disponible[b-gfj5iq7039] {
    border-left: 3px solid #00E400;
}

.Expedido[b-gfj5iq7039] {
    border-left: 3px solid #00A4DC;
}

.Anulado[b-gfj5iq7039] {
    border-left: 3px solid #FF0063;
}

.Dañado[b-gfj5iq7039] {
    border-left: 3px solid #C2C4C6;
}


/*----------------------
     Estados Badge
------------------------*/
.badge.Disponible[b-gfj5iq7039] {
    background: #F2FFF2;
    color: #0A5F0A;
    padding: 6px 10px;
    border: 1px solid #00E400;
}

.badge.Expedido[b-gfj5iq7039] {
    background: #E0F2FF;
    color: #004E7C;
    padding: 6px 10px;
    border: 1px solid #00A4DC;
}

.badge.Anulado[b-gfj5iq7039] {
    background: #FFE1EB;
    color: #8B0033;
    padding: 6px 10px;
    border: 1px solid #FF0063;
}

.badge.Dañado[b-gfj5iq7039] {
    background: #F1F2F3;
    color: #5A5C5E;
    padding: 6px 10px;
    border: 1px solid #C2C4C6;
}

/*------------------------------
    Botones Personalizados
-------------------------------*/
.btn-anular[b-gfj5iq7039] {
    background-color: #f8d7da !important;
    border: 1px solid #f1aeb5 !important;
    color: #842029 !important;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    border-radius: 6px !important;
}

    .btn-anular:hover[b-gfj5iq7039] {
        background-color: #f1aeb5 !important;
        border-color: #e98c95 !important;
    }

.btn-detalle[b-gfj5iq7039] {
    background-color: #e9f2fb !important;
    border: 1px solid #cfe2ff !important;
    color: #084298 !important;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    border-radius: 6px !important;
}

    .btn-detalle:hover[b-gfj5iq7039] {
        background-color: #dbeafe !important;
        border-color: #b6d4fe !important;
    }

.btn-expedir[b-gfj5iq7039] {
    background-color: #e6f4ea !important;
    border: 1px solid #b7dfc5 !important;
    color: #0f5132 !important;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    border-radius: 6px !important;
}

    .btn-expedir:hover[b-gfj5iq7039] {
        background-color: #d1e7dd !important;
        border-color: #a3cfbb !important;
    }

.btn-group .btn[b-gfj5iq7039] {
    margin-right: 4px;
}

    .btn-group .btn:last-child[b-gfj5iq7039] {
        margin-right: 0;
    }

.btn-expedir:disabled[b-gfj5iq7039],
.btn-anular:disabled[b-gfj5iq7039],
.btn-detalle:disabled[b-gfj5iq7039] {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none !important;
}
/* /Pages/Administracion/Certificacion/Expedidos.razor.rz.scp.css */
body[b-m989tvesoo] {
}

.btn-eliminar[b-m989tvesoo] {
    background: linear-gradient(135deg, #ff4b4b 0%, #ff6b81 100%);
    border: none;
    color: white;
    border-radius: 5px;
    padding: 5px 9px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 2px 5px rgba(255, 75, 75, 0.3);
}

    .btn-eliminar:hover[b-m989tvesoo] {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(255, 75, 75, 0.5);
        background: linear-gradient(135deg, #ff6b81 0%, #ff4b4b 100%);
    }
/* /Pages/Administracion/Certificacion/FormCertificado.razor.rz.scp.css */
body[b-v3slt68l9i] {
}

[b-v3slt68l9i] input[type=file]{
    width: 100%;
    border-radius: 5px;
}

    [b-v3slt68l9i] input[type=file]::file-selector-button {
        margin: 5px;
        margin-right: 20px;
        border: none;
        background: #084cdf;
        padding: 5px 20px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        transition: background .2s ease-in-out;
    }

[b-v3slt68l9i]  input[type=file]::file-selector-button:hover {
        background: #0d45a5;
    }


/*--------------------------------
           Persona Card
---------------------------------*/
.persona-card[b-v3slt68l9i] {
    background: #ffffff;
    border: 1px solid #eef2f7;
    padding: 1.25rem;
    transition: transform 0.3s ease;
}

    .persona-card:hover[b-v3slt68l9i] {
        transform: translateY(-5px);
    }

.card-body-custom[b-v3slt68l9i] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar-container[b-v3slt68l9i] {
    position: relative;
    flex-shrink: 0;
}

.avatar-circle[b-v3slt68l9i] {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #4a5568;
    border: 1px solid #A4A7AA;
}

.status-indicator[b-v3slt68l9i] {
    position: absolute;
    bottom: -5px;
    right: -5px;
    color: #28a745;
    background: white;
    border-radius: 50%;
    line-height: 1;
    font-size: 1.2rem;
}

.status-badge[b-v3slt68l9i] {
    font-size: 0.8rem;
    letter-spacing: 1px;
    background: #e6fcf5;
    color: #0ca678;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid #0ca678;
}

.persona-name[b-v3slt68l9i] {
    margin: 4px 0 2px 0;
    color: #2d3436;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.persona-meta[b-v3slt68l9i] {
    font-size: 0.85rem;
    color: #636e72;
    display: flex;
    align-items: center;
    gap: 6px;
}
/* /Pages/Administracion/Certificacion/Reportes/Anuales.razor.rz.scp.css */
.report-card-anual[b-vzlbk4csem] {
    border-radius: 10px;
    transition: transform 0.2s ease;
    border: 1px solid #eee !important;
}

    .report-card-anual:hover[b-vzlbk4csem] {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    }

.anio-badge[b-vzlbk4csem] {
    background: #2c5aa0;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
}

.anio-text[b-vzlbk4csem] {
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.text-success-jc[b-vzlbk4csem] {
    color: #0030FF;
    font-size: 1.2rem;
}

.icon-circle[b-vzlbk4csem] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.bg-success-subtle[b-vzlbk4csem] {
    background-color: #e8f5e9;
}

.bg-danger-subtle[b-vzlbk4csem] {
    background-color: #ffebee;
}

.card-footer .btn[b-vzlbk4csem] {
    border-radius: 8px;
    font-weight: 500;
}
/* /Pages/Administracion/Certificacion/Reportes/Mensuales.razor.rz.scp.css */
.month-card[b-s4hsjq05o7] {
    transition: all 0.3s ease;
    border-radius: 20px !important;
    border: 1px solid #f0f0f0 !important;
}

    .month-card:hover[b-s4hsjq05o7] {
        transform: translateX(6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    }

.fw-black[b-s4hsjq05o7] {
    font-weight: 900;
}

.small-text[b-s4hsjq05o7] {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-success-subtle[b-s4hsjq05o7] {
    background-color: #e7f5ec !important;
}

.bg-danger-subtle[b-s4hsjq05o7] {
    background-color: #fbe9e9 !important;
}

.row.g-4[b-s4hsjq05o7] {
    position: relative;
}
/* /Pages/Administracion/Certificacion/Stock.razor.rz.scp.css */
body[b-ayo07ef7mx] {
}

/*--------------------------
    Targetas de Disponibles
---------------------------*/

.bg-soft-primary[b-ayo07ef7mx] {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.bg-soft-success[b-ayo07ef7mx] {
    background-color: #e1f7ed;
    color: #198754;
}

.bg-soft-info[b-ayo07ef7mx] {
    background-color: #e1f6fc;
    color: #0dcaf0;
}

.icon-shape[b-ayo07ef7mx] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.custom-card[b-ayo07ef7mx] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 15px;
    background: #ffffff;
}

    .custom-card:hover[b-ayo07ef7mx] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    }

@media (max-width: 768px) {
    .icon-shape[b-ayo07ef7mx] {
        width: 48px;
        height: 48px;
    }
}

/*----------------------------
       Card Ceritificados
------------------------------*/

.badge[b-ayo07ef7mx] {
    font-size: 0.9rem;
    height: 30px;
    display: flex;
    align-items: center;
}

.card-certificado[b-ayo07ef7mx] {
    border-radius: 12px;
    transition: all .2s ease;
}

    .card-certificado:hover[b-ayo07ef7mx] {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.metric-number[b-ayo07ef7mx] {
    font-weight: 700;
    font-size: 1.1rem;
}

.metric-label[b-ayo07ef7mx] {
    font-size: .8rem;
    opacity: .7;
}

.progress-certificados[b-ayo07ef7mx] {
    height: 3px;
    border-radius: 6px;
}
/* /Pages/Administracion/Contable/Compras/Gestion.razor.rz.scp.css */
body[b-ggdl3ty3su] {
}


.message-box[b-ggdl3ty3su] {
    width: 200px;
    height: auto;
    position: absolute;
    top: 0;
    left: 205px;
    background: #F4F6F9;
    border-radius: 5px;
    padding: 5px;
    display: none;
    font-size: 13px;
    white-space: normal;
}

.dropdown-item:hover .message-box[b-ggdl3ty3su] {
    display: inline;
}

/*Paginacion*/
.page-item[b-ggdl3ty3su] {
    cursor: pointer;
}

.page-item[b-ggdl3ty3su] {
    cursor: pointer;
}

.download-btn[b-ggdl3ty3su] {
    border: none;
    font-size: 0.8rem;
    transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

    .download-btn:hover[b-ggdl3ty3su] {
        background: #f0f0f0;
        transform: scale(1.1);
    }

    .download-btn:active[b-ggdl3ty3su] {
        transform: scale(0.9);
    }

@media (max-width: 1150px) {
    .col-sm-12[b-ggdl3ty3su] {
       
        display: flex;
        justify-content: start !important;
        width: 100%;
    }
}
/* /Pages/Administracion/Cursos/Contenido.razor.rz.scp.css */
body[b-26n9xgdf1x] {
}

.curso-etiquetas .etiqueta[b-26n9xgdf1x] {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 5px;
    display: inline-block;
    white-space: nowrap;
}

.etiqueta-info[b-26n9xgdf1x] {
    background-color: #e0f3ff;
    color: #0277bd;
}

.etiqueta-activo[b-26n9xgdf1x] {
    background-color: #d4edda;
    color: #155724;
}

.etiqueta-inactivo[b-26n9xgdf1x] {
    background-color: #f8d7da;
    color: #721c24;
}

.etiqueta-publicado[b-26n9xgdf1x] {
    background-color: #e2e3f3;
    color: #2b2e83;
}

.etiqueta-privado[b-26n9xgdf1x] {
    background-color: #e0e0e0;
    color: #555;
}

.card-header:hover[b-26n9xgdf1x] {
    background-color: #f8f9fa;
}

/*Estylos acordeon*/
.accordion-button[b-26n9xgdf1x] {
    box-shadow: none;
    transition: background-color 0.2s ease;
}

    .accordion-button:not(.collapsed)[b-26n9xgdf1x] {
        border-left: 3px solid #34495E;
        color: #333;
    }

    .accordion-button:focus[b-26n9xgdf1x] {
        box-shadow: none;
    }


/*Botton de Eliminado*/
.btn-icon-trash[b-26n9xgdf1x] {
    border: 1px solid #FF3800;
    background-color: transparent;
    color: #FF3800;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .btn-icon-trash:hover[b-26n9xgdf1x] {
        background-color: #FF3800;
        color: white;
    }
/* /Pages/Administracion/Cursos/Detalles.razor.rz.scp.css */

.video-js[b-cech6womp4] {
    width: 100% !important;
    height: 100% !important;
    border-radius: 10px;
}

.nav-tabs .nav-link[b-cech6womp4] {
    color: #6c757d; /* gris oscuro */
    border: none;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

    .nav-tabs .nav-link:hover[b-cech6womp4] {
        color: #0d6efd;
    }

    .nav-tabs .nav-link.active[b-cech6womp4] {
        color: #0d6efd; /* azul */
        border-bottom: 2px solid #0d6efd;
        font-weight: 600;
        background-color: transparent;
    }
/* /Pages/Administracion/Cursos/FormCurso.razor.rz.scp.css */
body[b-x3bz83shdv] {
}
.video-js[b-x3bz83shdv] {
    width: 100% !important;
    height: 400px !important;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .video-js[b-x3bz83shdv] {
        width: 100% !important;
        height: 200px !important;
    }

}


/* /Pages/Administracion/Cursos/Gestion.razor.rz.scp.css */
body[b-oibt7y7jel] {
}

.card[b-oibt7y7jel] {
    transition: box-shadow 0.2s ease, transform 0.5s ease;
}

.card:hover[b-oibt7y7jel] {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.content-img[b-oibt7y7jel] {
    width: 100%;
    height: 15vw;
    background: #f1f1f1;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

/*Configuracion de Imagen Curso*/
.curso-img[b-oibt7y7jel] {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Contenedor unificado */
.badges-container[b-oibt7y7jel] {
    z-index: 3;
    pointer-events: none; /* Permite hacer clic en la imagen */
    bottom: 0px;
}

    .badges-container > *[b-oibt7y7jel] {
        pointer-events: auto; /* Los badges sí son clickeables */
    }

/* Badge Programa mejorado */
.badge-programa[b-oibt7y7jel] {
    background: rgba(0, 24, 70, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Badge Modalidad mejorado */
.modalidad-badge[b-oibt7y7jel] {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

    .modalidad-badge.online[b-oibt7y7jel] {
        background: rgba(0, 123, 255, 0.4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 123, 255, 0.3);
    }

    .modalidad-badge.presencial[b-oibt7y7jel] {
        background: rgba(40, 167, 69, 0.4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(40, 167, 69, 0.3);
    }

    .modalidad-badge.virtual[b-oibt7y7jel] {
        background: rgba(255, 165, 0, 0.4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 165, 0, 0.3);
    }

    .modalidad-badge.híbrido[b-oibt7y7jel],
    .modalidad-badge.hibrido[b-oibt7y7jel] {
        background: rgba(111, 66, 193, 0.4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(111, 66, 193, 0.3);
    }

/* Estado indicador - reposicionado */
.estado-indicador[b-oibt7y7jel] {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    z-index: 2;
    border: 2px solid white;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}

.publicado[b-oibt7y7jel] {
    background-color: #28FC45;
}

.interno[b-oibt7y7jel] {
    background-color: #6c757d;
}

/* Estado indicador mejorado */
.estado-indicador[b-oibt7y7jel] {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    z-index: 2;
    border: 2px solid white;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}

.publicado[b-oibt7y7jel] {
    background-color: #28FC45;
}

.interno[b-oibt7y7jel] {
    background-color: #6c757d;
}

/*Estilos para el titulo de cada curso*/
.card-title[b-oibt7y7jel] {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

    .card-title[b-oibt7y7jel]::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background-color: #e53935; 
        transition: width 0.3s ease;
    }


    .card-title:hover[b-oibt7y7jel] {
        color: #330000; 
    }

        .card-title:hover[b-oibt7y7jel]::after {
            width: 100%;
        }

.roboto-bold[b-oibt7y7jel] {
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw + 0.5rem, 1.2rem);
}
/* ==========================
    Cinta administrativa
============================= */
.admin-toolbar[b-oibt7y7jel] {
    transition: all 0.2s ease-in-out;
}

.btn-admin[b-oibt7y7jel] {
    background: transparent;
    border: none;
    color: #4B5563;
    font-size: 1.1rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .btn-admin:hover[b-oibt7y7jel] {
        background-color: #E5E7EB;
        color: #111827;
        transform: scale(1.05);
    }

.admin-toolbar:hover[b-oibt7y7jel] {
    background-color: #f1f5f9;
}

@media (max-width: 1000px) {
    .content-img[b-oibt7y7jel] {
        height: 15vw;
    }
}

@media (min-width: 800px) and (max-width: 1150.00px) {
    .col-md-4[b-oibt7y7jel] {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}


@media (max-width: 767px) {
    .content-img[b-oibt7y7jel] {
        height: 35vw;
    }
}

@media (max-width: 567px) {
    .content-img[b-oibt7y7jel] {
        height: 45vw;
    }
    .card-body[b-oibt7y7jel] {
        height: 150px !important;
    }
}
/* /Pages/Administracion/Facturacion/Boletas.razor.rz.scp.css */
body[b-aw0365lny1] {
}

.fecha-btn[b-aw0365lny1] {
    width: 40px; /* Reduce el ancho */
    text-indent: -9999px; /* Oculta el texto */
    position: relative;
}

    .fecha-btn[b-aw0365lny1]::-webkit-calendar-picker-indicator {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 15px;
        height: 15px;
        opacity: 1;
        cursor: pointer;
    }

/* /Pages/Administracion/Facturacion/Componentes/DetallesRD.razor.rz.scp.css */

.custom-card-border[b-3281rfcg3y] {
    border-left-color: #1C2C54 !important;
    background-color: #ffffff; 
}

[data-bs-theme="dark"] .custom-card-border[b-3281rfcg3y] {
    border-left-color: #60A5FA !important;
    background-color: #161B22;
}

.card.h-100[b-3281rfcg3y] {
    display: flex;
    flex-direction: column;
}

.btn-group .btn-sm[b-3281rfcg3y] {
    font-size: 12px;
    border-radius: 4px;
}

[data-bs-theme="dark"] .btn-outline-warning[b-3281rfcg3y] {
    color: #ffc107 !important;
}
/* /Pages/Administracion/Facturacion/Dashboard.razor.rz.scp.css */
/*====HEADER====*/

.dropdown .dropdown-menu[b-o3m0v8flwk] {
    cursor: pointer;
    background: #F5F5F5;
}

.btn-informe[b-o3m0v8flwk] {
    background: gold;
    color: var(--text-color2);
}

.btn-informe:active[b-o3m0v8flwk] {
    border: 1px solid #FE8B00;
}

.input-group[b-o3m0v8flwk]{
    z-index: 0;
}
.search-input[b-o3m0v8flwk] {
    transition: border-color 0.6s ease;
    color: var(--text-color);
}

.search-input[b-o3m0v8flwk]::placeholder {
    color: var(--placeholder-color);
}

.search-input:focus[b-o3m0v8flwk] {
    border: 1px solid var(--focus-color);
}
/*====GRAFICOS====*/
.tile[b-o3m0v8flwk] {
    font-size: 1.5rem;
}
.combobox-graficos[b-o3m0v8flwk] {
    display: flex;
    justify-content: end;
    align-items: center;
}
    .form-select[b-o3m0v8flwk] {
        width: auto;
    }

.grafico-lines canvas[b-o3m0v8flwk] {
    width: 100%;
    height: 350px;
}

.title-montos[b-o3m0v8flwk] {
    font-size: 14px;
}

/*====CARDS====*/
.card-header.item[b-o3m0v8flwk] {
    color: #444444;
    font-size: 1.2rem;
    font-weight: 600;
}

.detalles-card[b-o3m0v8flwk] {
    font-size: 1rem;
}
.conparation[b-o3m0v8flwk] {
    height: 100px;
    position: relative;
}
.diferencia[b-o3m0v8flwk] {
    color: #444444;
    border-top: 1px dashed #CDCDCD;
    font-size: 0.9rem;
}

/*CONTROLES BASICOS*/
hr[b-o3m0v8flwk]{
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    margin-top: 5px;
}
.card[b-o3m0v8flwk] {
    border: 1px solid var(--border-color)
}

.selector[b-o3m0v8flwk] {
    width: auto;
}

.lista-card[b-o3m0v8flwk]{
    list-style-type: none;
    padding: 0;
}
.egreso-vs[b-o3m0v8flwk] {
    color: #FF5733;
    font-size: 1.2rem;
}
.mes-vs[b-o3m0v8flwk]{
    font-size: 0.9rem;
}


/*El estilo de la tabla
    esta en el archivo css enlazado 
    a la pagina
*/

/*====PAGINACIÓN=====*/
.page-link[b-o3m0v8flwk] {
    cursor: pointer;
}
.page-item.disabled .page-link[b-o3m0v8flwk] {
    cursor:not-allowed; 
}



@media (max-width: 950px) {
    /*===GRAFICOS====*/
    .tile[b-o3m0v8flwk]{
        font-size: 1.2rem;
    }
    .title-montos[b-o3m0v8flwk]{
        font-size: 12px;
    }
    .montos[b-o3m0v8flwk]{
        font-size: 14px;
    }
}

@media (max-width: 768px){
    .contenedor-filtro[b-o3m0v8flwk]{
        margin-top: 5px;
    }
    .combobox-graficos[b-o3m0v8flwk] {
        margin-top: 10px;
    }
}

@media (max-width: 540px){
    .contenedor-filtro label[b-o3m0v8flwk] {
        display: none;
    }
}
/* /Pages/Administracion/Facturacion/Facturas.razor.rz.scp.css */
body[b-310msr8tfh] {
}

/*Configuracion de Fechas*/
.fecha-btn[b-310msr8tfh] {
    width: 40px; /* Reduce el ancho */
    text-indent: -999px; /* Oculta el texto */
    position: relative;
}

    .fecha-btn[b-310msr8tfh]::-webkit-calendar-picker-indicator {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 15px;
        height: 15px;
        opacity: 1;
        cursor: pointer;
    }
/* /Pages/Administracion/Facturacion/Formulario/Form.razor.rz.scp.css */
body[b-k5qk7qg6s0] {
}
[b-k5qk7qg6s0] .validacionFalse {
    background-color: #fef2f2; /* rojo claro pastel */
    transition: all 0.3s ease;
}

[b-k5qk7qg6s0] .validacionTrue {
    background-color: #f0fdf4; /* verde claro pastel */
    transition: all 0.3s ease;
}

.entorno-produccion[b-k5qk7qg6s0] {
    color: #1f3a5f; /* Azul oscuro elegante */
}

.entorno-desarrollo[b-k5qk7qg6s0] {
    color: #b45309; /* Naranja oscuro sobrio */
}

/* /Pages/Administracion/Facturacion/Herramientas/ArchivoLista.razor.rz.scp.css */
body[b-cxeugwfnf5] {
}

.btn-gradient-primary[b-cxeugwfnf5] {
    background: linear-gradient(90deg, #007bff 0%, #00c4ff 100%);
    border: none;
    color: #fff;
    font-weight: 500;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .btn-gradient-primary:hover[b-cxeugwfnf5] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    }

/*==========================
    Ejemplo ancho fijo
============================*/
.fixed-sample[b-cxeugwfnf5] {
    font-family: "Courier New", monospace;
    font-size: 0.78rem;
    padding: 10px;
    white-space: pre;
    color: #333;
}



/*=============================
    Busqueda Personalizada
==============================*/

.search-wrapper[b-cxeugwfnf5] {
    position: relative;
    width: 100%;
}

.search-input[b-cxeugwfnf5] {
    padding-right: 20px !important;
}

.btn-clear-input[b-cxeugwfnf5] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #6c757d;
    font-size: 0.8rem;
}

    .btn-clear-input:hover[b-cxeugwfnf5] {
        color: #dc3545;
        transform: translateY(-50%) scale(1.15);
    }

.contador-badge[b-cxeugwfnf5] {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}


/*==========================
    Tabla Personalizada
============================*/
.custom-table thead th[b-cxeugwfnf5] {
    color: #818284 !important;
    font-weight: 500;
    background-color: #f8f9fa;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.custom-table tbody tr[b-cxeugwfnf5] {
    transition: all 0.2s ease;
}

    .custom-table tbody tr:hover[b-cxeugwfnf5] {
        background-color: rgba(0, 0, 0, 0.03) !important;
    }

.btn-mini-danger[b-cxeugwfnf5] {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
    border-radius: 0.2rem;
    color: red;
    border: 1px solid #818284;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn-mini-danger:hover[b-cxeugwfnf5] {
        background-color: #c82333;
        color: white;
        background: red;
    }

.custom-table td[b-cxeugwfnf5],
.custom-table th[b-cxeugwfnf5] {
    padding: 0.4rem 0.5rem;
    vertical-align: middle;
    font-size: 0.8rem;
    color: #2B2B2C;
}
/* /Pages/Administracion/Facturacion/Herramientas/EmisionLista.razor.rz.scp.css */
body[b-29372gc3r1] {
}

.currency-toggle[b-29372gc3r1] {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.currency-btn[b-29372gc3r1] {
    padding: 8px 8px;
    border: none;
    background: #f8f9fa;
    color: #333;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 60px;
}

    .currency-btn:hover[b-29372gc3r1] {
        background: #e3e3e3;
    }

    .currency-btn.active[b-29372gc3r1] {
        background: linear-gradient(135deg, #0069d9, #0053b3);
        color: white !important;
        border-color: #0053b3;
        box-shadow: 0 0 6px rgba(0, 112, 255, 0.4);
    }
/*---------------------------
    Mensajes de proceso (MEJORADO)
----------------------------*/
.aviso-proceso[b-29372gc3r1] {
    background: #fff7d6;
    border-left: 6px solid #ff9800;
    border-radius: 6px;
    padding: 15px 18px;
}

    /* Caja de resumen */
    .aviso-proceso .resumen-box[b-29372gc3r1] {
        background: #ff9800;
        padding: 8px 12px;
        border-radius: 6px;
        min-width: 180px;
        color: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

/* Estado del proceso */
.estado-proceso[b-29372gc3r1] {
    margin-top: 12px;
    padding: 10px 15px;
    background: #fff3cd;
    border: 1px solid #ffecb5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    /* Spinner adaptado al estilo del tema */
    .estado-proceso .spinner-border[b-29372gc3r1] {
        color: #ff9800 !important;
    }

    /* Texto */
    .estado-proceso strong[b-29372gc3r1] {
        color: #7a4b00;
        font-size: 14px;
    }


/*==========================
    Tabla Personalizada
============================*/

.custom-table thead th[b-29372gc3r1] {
    color: #2B2B2C !important;
    font-weight: 500;
    background-color: #f8f9fa;
    border-bottom: 2px solid red;
    position: sticky;
    top: 0;
    z-index: 10;
}

.custom-table tbody tr[b-29372gc3r1] {
    transition: all 0.2s ease;
}

    .custom-table tbody tr:hover[b-29372gc3r1] {
        background-color: rgba(0, 0, 0, 0.03) !important;
    }

.custom-table td[b-29372gc3r1],
.custom-table th[b-29372gc3r1] {
    padding: 0.4rem 0.5rem;
    vertical-align: middle;
    font-size: 0.8rem;
    color: #2B2B2C;    
}
/* /Pages/Administracion/Facturacion/NuevaNC.razor.rz.scp.css */
body[b-day1lvbjh9] {
}

[b-day1lvbjh9] .input-naranja {
    background-color: #FFE9D9;
    border: 1px solid #FFBF8D;
    color: orangered;
}
/* /Pages/Administracion/Notificaciones/Componentes/Chats.razor.rz.scp.css */
/* ---------------------------------------------- 
   0. Animaciones
   ---------------------------------------------- */
.anim-pulse[b-hkacs78s4l] {
    animation: pulse-green-b-hkacs78s4l 2s infinite;
}

@keyframes pulse-green-b-hkacs78s4l {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(37, 225, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 225, 102, 0);
    }
}

@keyframes pulse-danger-b-hkacs78s4l {

    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes proSpin-b-hkacs78s4l {
    to {
        transform: rotate(360deg);
    }
}


/* ----------------------------------------------
   1. Panel de Etiquetas
   ---------------------------------------------- */
.panel-etiquetas[b-hkacs78s4l] {
    position: absolute;
    top: 0;
    left: -100%;
    background-color: #ffffff;
    z-index: 100;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.panel-visible[b-hkacs78s4l] {
    left: 0;
}

.header-custom[b-hkacs78s4l] {
    height: 170px;
}

.chat-title[b-hkacs78s4l] {
    line-height: 1.2;
    font-weight: 600;
}

.chat-subtitle[b-hkacs78s4l] {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #555555;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    display: block;
    width: 100%;
    text-align: justify;
}

/* ----------------------------------------------
   2. Botones Whatsapp
   ---------------------------------------------- */
.btn-icon[b-hkacs78s4l] {
    border: none;
    color: #535354;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: background 0.2s, transform 0.1s;
}

    .btn-icon:hover[b-hkacs78s4l] {
        background: #E2E2E2;
        font-size: 1.2rem;
    }

    .btn-icon:active[b-hkacs78s4l] {
        transform: scale(0.92);
    }

.opacity-hover[b-hkacs78s4l] {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.conversation-item:hover .opacity-hover[b-hkacs78s4l] {
    opacity: 1;
}

/* ----------------------------------------------
   3. Estructura y Contenedores
   ---------------------------------------------- */
.chat-scroll-area[b-hkacs78s4l] {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 180px);
    scrollbar-width: thin;
}

    .chat-scroll-area.chat-small[b-hkacs78s4l] {
        max-height: calc(100vh - 290px);
    }

.headers-chats[b-hkacs78s4l] {
    width: 100%;
}

/* ---------------------------------------------- 
   4. Listado de Chats
   ---------------------------------------------- */
.conversation-item[b-hkacs78s4l] {
    position: relative;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

    .conversation-item:hover[b-hkacs78s4l] {
        background-color: #f5f6f6;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

[data-theme='dark'] .conversation-item:hover[b-hkacs78s4l] {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chat-selected[b-hkacs78s4l] {
    background: linear-gradient(90deg, #E0F7FF 0%, #F6FBFF 100%) !important;
    border-right: 3px solid #7CFF00;
}

[data-theme='dark'] .chat-selected[b-hkacs78s4l] {
    background: linear-gradient(90deg, #162c4a 0%, #0d1117 100%) !important;
    border-right: 3px solid #7CFF00 !important;
    box-shadow: inset 4px 0 10px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------- 
   5. Avares y Estados del Chat
   ---------------------------------------------- */
.avatar-circle[b-hkacs78s4l] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bg-en-linea[b-hkacs78s4l] {
    background-color: #25D366;
}

.bg-secondary[b-hkacs78s4l] {
    background-color: #94a3b8;
}

.status-dot-ui[b-hkacs78s4l] {
    border: 2px solid #ffffff;
}

/* ---------------------------------------------- 
   6. Etiquetas y Tooltips (TAGS)
   ---------------------------------------------- */
.tag-wrapper[b-hkacs78s4l] {
    display: inline-block;
    cursor: help;
    position: relative;
}

.badge-custom[b-hkacs78s4l] {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.badge-desafiliado[b-hkacs78s4l] {
    position: absolute;
    top: -8px;
    left: 5px;  
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    background-color: #FF2C35;
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
}

    .badge-desafiliado i[b-hkacs78s4l] {
        animation: pulse-danger-b-hkacs78s4l 2s infinite;
    }

.custom-tooltip[b-hkacs78s4l] {
    position: absolute;
    right: 0;
    background: #F6FBFF;
    backdrop-filter: blur(4px);
    color: #6D6F71;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    line-height: 1.3;
    width: 200px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
    pointer-events: none;
    z-index: 4;
}
.tag-wrapper:hover .custom-tooltip[b-hkacs78s4l] {
    visibility: visible;
    opacity: 1;
    transform: translateX(-5%);
}

.tooltip-arrow[b-hkacs78s4l] {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(33, 37, 41, 0.95) transparent transparent transparent;
}

.tooltip-inner-content[b-hkacs78s4l] {
    word-wrap: break-word;
    font-family: 'Roboto', sans-serif;
}

/* ---------------------------------------------- 
   7. Indicares de Estado de Mensajes
   ---------------------------------------------- */
.whatsapp-badge[b-hkacs78s4l] {
    background-color: #00DA00;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    min-width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.fa-check-double.text-primary[b-hkacs78s4l] {
    color: #34B7F1 !important;
}

/* ---------------------------------------------- 
   8. Loading Scroll Infinito
   ---------------------------------------------- */
.loading-more-pill[b-hkacs78s4l] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #E5E5E5;
    padding: 8px 20px;
    border-radius: 30px;
    background: #ffffff;
}

.pro-spinner[b-hkacs78s4l] {
    width: 16px;
    height: 16px;
    border: 2px solid #e9edef;
    border-top: 2px solid #25D366;
    border-radius: 50%;
    animation: proSpin-b-hkacs78s4l 0.8s linear infinite;
}

/* ---------------------------------------------- 
   9. Responsivo Pantallas Medianas
   ---------------------------------------------- */
@media (max-width: 991px) {
    .chat-scroll-area[b-hkacs78s4l] {
        height: calc(100vh - 220px);
    }
    .headers-chats[b-hkacs78s4l] {
        max-width: 100%;
    }
}
/* /Pages/Administracion/Notificaciones/Componentes/Contacto.razor.rz.scp.css */
body[b-c6laow7ntl] {
}
/* /Pages/Administracion/Notificaciones/Contactos.razor.rz.scp.css */
/*----------------------------
         Boton Flotante
-----------------------------*/
.fab-add[b-mvv48g9z8d] {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 30%;
    border: none;
    background: linear-gradient(145deg, #0d6efd, #0a58ca);
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 1050;
}

    .fab-add:hover[b-mvv48g9z8d] {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    }

.mask-vignette[b-mvv48g9z8d] {
    mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
}

/*-------------------------------
      Navegación alfabética
--------------------------------*/
.alphabet-nav[b-mvv48g9z8d] {
    backdrop-filter: blur(10px);
}

.alphabet-btn[b-mvv48g9z8d] {
    margin: 0 5px;
    padding: 0.3rem 0.7rem;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: #6c757d;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .alphabet-btn:hover[b-mvv48g9z8d] {
        background: #002396;
        color: white;
        transform: scale(1.2);
    }

    .alphabet-btn.active[b-mvv48g9z8d] {
        background: #0d6efd;
        color: white;
    }

    .alphabet-btn .contact-count[b-mvv48g9z8d] {
        font-size: 0.75rem;
        opacity: 0.7;
    }

.contact-avatar[b-mvv48g9z8d] {
    background: linear-gradient(145deg, #0d6efd, #0a58ca);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

.empty-state-icon[b-mvv48g9z8d] {
    transition: all 0.5s ease;
}

.empty-state:hover .empty-state-icon[b-mvv48g9z8d] {
    transform: scale(1.1);
    background: #e7f1ff !important;
}

.dropdown-item[b-mvv48g9z8d] {
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

    .dropdown-item:hover[b-mvv48g9z8d] {
        border-left: 3px solid orange;
        background-color: #fffaf0; 
        color: #d48806; 
    }

.dropdown-menu li:last-child[b-mvv48g9z8d] {
    border-bottom: none !important;
}


@media (max-width: 768px) {
    .contact-card[b-mvv48g9z8d] {
        margin: 0;
    }

    .alphabet-nav[b-mvv48g9z8d] {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }

    .group-letter[b-mvv48g9z8d] {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
    }
}

.transition-all[b-mvv48g9z8d] {
    transition: all 0.3s ease;
}
/* /Pages/Administracion/Notificaciones/Plantillas/Email/FormEmail.razor.rz.scp.css */


.btn-primary[b-io6n44iwul] {
    background-color: #0d6efd;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

    .btn-primary:hover[b-io6n44iwul] {
        background-color: #0b5ed7;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
    }

    .btn-primary:active[b-io6n44iwul] {
        transform: translateY(0);
    }

/* /Pages/Administracion/Notificaciones/Plantillas/Plantillas.razor.rz.scp.css */
body[b-yp4kg4ud9s] {
}

/*----------------------------
    Whatsapp Card Styles
------------------------------*/
.status-dot[b-yp4kg4ud9s] {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
}

    .status-dot.active[b-yp4kg4ud9s] {
        background-color: #25d366;
    }

    .status-dot.inactive[b-yp4kg4ud9s] {
        background-color: #adb5bd;
    }

/*------------------------------
        Email Templates
-------------------------------*/
.shadow-inner[b-yp4kg4ud9s] {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.btn-white[b-yp4kg4ud9s] {
    background-color: #fff;
}

    .btn-white:hover[b-yp4kg4ud9s] {
        background-color: #f8f9fa;
    }

.card-body[b-yp4kg4ud9s]::-webkit-scrollbar {
    width: 6px;
}

.card-body[b-yp4kg4ud9s]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
/* /Pages/Administracion/Notificaciones/Plantillas/Whatsapp/FormTemplate.razor.rz.scp.css */
/* Contenedor de la tarjeta */
.option-card[b-f24287p7jd] {
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
    border: 1px solid var(--card-border);
}

    /* Efecto Hover */
    .option-card:hover[b-f24287p7jd] {
        box-shadow: var(--card-shadow-hover);
        background-color: var(--card-hover-bg);
    }

    /* Estado Activo (Seleccionado) */
    .option-card.active[b-f24287p7jd] {
        background-color: transparent;
    }

/* Simulación de Radio Button */
.custom-radio[b-f24287p7jd] {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.option-card.active .custom-radio[b-f24287p7jd] {
    border-color: #0d6efd;
}

.radio-dot[b-f24287p7jd] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.2s;
}

.option-card.active .radio-dot[b-f24287p7jd] {
    background-color: #0d6efd;
}

/* Iconos */
.icon-container[b-f24287p7jd] {
    color: #6c757d;
    width: 24px;
    text-align: center;
}

.option-card.active .icon-container[b-f24287p7jd] {
    color: #0d6efd;
}
/* /Pages/Administracion/Notificaciones/WhatsApp.razor.rz.scp.css */
/* ---------------------------------------------- 
   0. Animaciones
   ---------------------------------------------- */
@keyframes loading-slide-b-6ohnq9775u {
    0% {
        left: -40%;
    }

    50% {
        left: 60%;
    }

    100% {
        left: 100%;
    }
}

@keyframes spin-b-6ohnq9775u {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideIn-b-6ohnq9775u {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(5px);
    }
}

@keyframes chatFadeSlide-b-6ohnq9775u {
    from {
        opacity: 0;
        transform: translateX(12px);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes pulse-b-6ohnq9775u {
    0%, 100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes shake-b-6ohnq9775u {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-1px);
    }

    75% {
        transform: translateX(1px);
    }
}

@keyframes highlightNew-b-6ohnq9775u {
    0% {
        background-color: rgba(52, 183, 241, 0.1);
    }

    100% {
        background-color: transparent;
    }
}

@keyframes popInDrop-b-6ohnq9775u {
    to {
        transform: scale(1);
    }
}

@keyframes ripple-file-b-6ohnq9775u {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes typing-dots-b-6ohnq9775u {
    0%, 20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%, 100% {
        content: '...';
    }
}

@keyframes fadeInLoader-b-6ohnq9775u {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------
   1. Contenedor
   ---------------------------------------------- */
.contenedor[b-6ohnq9775u] {
    margin-top: 50px;
}

/* ----------------------------------------------
   1. Loding Inicial
   ---------------------------------------------- */
.whatsapp-loading-bar[b-6ohnq9775u] {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #e9ecef;
    overflow: hidden;
}

.whatsapp-loading[b-6ohnq9775u]{
    position: absolute;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #25D366, #6ee7b7, #25D366);
    animation: loading-slide-b-6ohnq9775u 1.2s infinite ease-in-out;
    border-radius: 2px;
}

.spinner[b-6ohnq9775u] {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin-b-6ohnq9775u 0.8s linear infinite;
}

/* ----------------------------------------------
   2. Contenedores Principales
   ---------------------------------------------- */
.chats[b-6ohnq9775u] {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: width 0.3s;
    width: 370px;
}

.chat[b-6ohnq9775u] {
    position: relative;
    height: calc(100vh - 50px);
    background: var(--card-bg);
}

/* ----------------------------------------------
   3. Contactos Seleccionados
   ---------------------------------------------- */

.search-header-container[b-6ohnq9775u] {
    position: relative;
    background: white;
}

    .search-header-container[b-6ohnq9775u]::after {
        content: "";
        position: absolute;
        bottom: -20px; 
        left: 0;
        width: 100%;
        height: 20px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none; 
    }


.contact-item[b-6ohnq9775u] {
    border: none;
    background: transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .contact-item:hover[b-6ohnq9775u] {
        background-color: #f0f2f5 !important; 
    }

.contact-name[b-6ohnq9775u] {
    font-weight: 600;
    color: #111b21;
    display: block; 
    font-size: 0.9rem;
    line-height: 1.2;
}

.contact-number[b-6ohnq9775u] {
    color: #667781;
    font-size: 0.75rem;
    display: block;
}

.invite-badge[b-6ohnq9775u] {
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    color: #8696a0;
    border: 1px solid #e9ecef;
}

.custom-add-contact[b-6ohnq9775u] {
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    color: #000000;
    padding: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.icon-container[b-6ohnq9775u] {
    background: #25D366;
    border: 1px solid #25D366;
    width: 30px;
    height: 30px;
    display: flex;
    font-size: 0.7rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    color: #ffffff;
}

.custom-add-contact:hover .icon-container[b-6ohnq9775u] {
    background: #25FF66;
}


/* ----------------------------------------------
   3. Chat Seleccionado
   ---------------------------------------------- */

.header-chat[b-6ohnq9775u] {
    position: absolute;
    z-index: 5;
    width: 100%;
}

.avatar-icon[b-6ohnq9775u] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #171DC5;
    font-size: 1.4rem;
}

.chat-name[b-6ohnq9775u] {
    white-space: nowrap;
}

.chat-number[b-6ohnq9775u] {
    font-size: 0.8rem;
    color: #667781;
}

/* ----------------------------------------------
   4. Botones Globales y Lista de Contactos
   ---------------------------------------------- */
.dropdown-item:active[b-6ohnq9775u] {
    background-color: #f0f2f5;
    color: #111b21;
}

.dropdown-item:hover[b-6ohnq9775u] {
    background-color: #f5f6f6;
}

.btn-light[b-6ohnq9775u] {
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

    .btn-light:hover[b-6ohnq9775u] {
        background-color: #f8f9fa;
        border-color: #007bff;
    }

/* ----------------------------------------------
   5. Mensajes del Chat
   ---------------------------------------------- */

.area-mensajes[b-6ohnq9775u] {
    margin-top: 55px;
    height: calc(100vh - 120px);
    padding-bottom: 70px !important;
    overflow-y: auto;
}

.footer-chat-fade[b-6ohnq9775u] {
    bottom: 0;
    width: 100%;
    background: #FFFFFF;
}


[data-theme='dark'] .footer-chat-fade[b-6ohnq9775u] {
    background: #0E1216;
}

.footer-chat-fade[b-6ohnq9775u]::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0) 0%, #FFFFFF 100%);
    pointer-events: none;
}

[data-theme='dark'] .footer-chat-fade[b-6ohnq9775u]::before {
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0) 0%, #0E1216 100%);
}

    .chat-anim[b-6ohnq9775u] {
        animation: chatFadeSlide-b-6ohnq9775u 0.30s ease-out;
    }
    /* ----------------------------------------------
   5. Burbujas y Estados de Mensajes
   ---------------------------------------------- */
    .message-bubble[b-6ohnq9775u] {
        max-width: 50%;
        border-radius: 10px;
        font-size: 0.9rem;
        position: relative;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        color: var(--text-main);
    }

        .message-bubble.sent[b-6ohnq9775u] {
            background-color: #D0FAE5;
            border-bottom-right-radius: 5px;
            border: 1px solid #BDFFC6;
        }

        .message-bubble.received[b-6ohnq9775u] {
            background-color: #F1F3F4;
            border-bottom-left-radius: 5px;
            border: 1px solid #F1F3F4;
        }
    /*--------------------------------
    Sobrescritura Solo Dark Mode
---------------------------------*/
    [data-theme='dark'] .message-bubble.sent[b-6ohnq9775u] {
        background-color: #054a3a !important;
        border: 1px solid #065f46 !important;
        color: #d1fae5 !important;
    }

    [data-theme='dark'] .message-bubble.received[b-6ohnq9775u] {
        background-color: #202c33 !important;
        border: 1px solid #202c33 !important;
        color: #e9edef !important;
    }

    .message-bubble.received.unread[b-6ohnq9775u] {
        background-color: #f0f8ff;
        border-left: 3px solid #34B7F1;
    }

    .message-text[b-6ohnq9775u] {
        padding: 7px;
        word-wrap: break-word;
        font-size: 0.8rem;
    }

    .message-time[b-6ohnq9775u] {
        padding: 3px 7px;
        font-size: 0.8rem;
    }

    .message-options-btn[b-6ohnq9775u] {
        position: absolute;
        top: 3px;
        right: 3px;
        opacity: 0;
        transition: opacity 0.2s ease;
        background: transparent;
        border: none;
        color: #6c757d;
        z-index: 20;
        font-size: 20px;
    }

    .received .message-options-btn[b-6ohnq9775u] {
        right: -35px !important;
    }

    .message-bubble:hover .message-options-btn[b-6ohnq9775u] {
        opacity: 1;
    }

    .message-options-btn:hover[b-6ohnq9775u] {
        color: #000000;
    }

    .message-status[b-6ohnq9775u] {
        font-size: 0.75rem;
        opacity: 0.9;
    }

        .message-status .fa-clock[b-6ohnq9775u] {
            color: #6c757d !important;
            animation: pulse-b-6ohnq9775u 1.5s infinite;
        }

        .message-status .fa-check[b-6ohnq9775u],
        .message-status .fa-check-double.text-muted[b-6ohnq9775u] {
            color: #6c757d !important;
        }

        .message-status .fa-check-double.text-primary[b-6ohnq9775u] {
            color: #34B7F1 !important;
        }
        /* Azul WhatsApp */
        .message-status .fa-exclamation-circle.text-danger[b-6ohnq9775u] {
            color: #ff4444 !important;
            animation: shake-b-6ohnq9775u 0.5s ease-in-out 2;
        }

        .message-status .fa-times-circle.text-warning[b-6ohnq9775u] {
            color: #ff9900 !important;
        }

    .message-bubble.sent .message-status .fa-exclamation-circle:hover[b-6ohnq9775u],
    .message-bubble.sent .message-status .fa-times-circle:hover[b-6ohnq9775u] {
        transform: scale(1.2);
        transition: transform 0.2s ease;
    }

    .message-bubble.new-message[b-6ohnq9775u] {
        animation: highlightNew-b-6ohnq9775u 2s ease-out;
    }
    /* ----------------------------------------------
   5. Input del Chat
   ---------------------------------------------- */
    .chat-input-container[b-6ohnq9775u] {
        display: flex;
        align-items: center;
        position: relative;
    }

    .custom-textarea[b-6ohnq9775u] {
        resize: none;
        overflow-y: hidden;
        transition: height 0.1s ease;
        padding-right: 45px;
    }

        .custom-textarea:focus[b-6ohnq9775u] {
            box-shadow: none;
        }

    .btn-attach[b-6ohnq9775u] {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: transparent;
        color: #6c757d;
        font-size: 1.5rem;
        transition: transform 0.3s ease, color 0.3s;
    }

        .btn-attach:hover[b-6ohnq9775u] {
            background: #ffffff;
        }

        .btn-attach:focus[b-6ohnq9775u] {
            transform: rotate(45deg);
            color: #00a884;
        }

    .dropup-whatsapp .dropdown-menu[b-6ohnq9775u] {
        border: 1px solid #e0e0e0;
        bottom: 10px !important;
        left: 0;
        min-width: 180px;
        transform-origin: bottom left;
        animation: slideIn-b-6ohnq9775u 0.2s ease-out;
    }

    .attach-item[b-6ohnq9775u] {
        display: flex;
        gap: 5px;
        align-items: center;
        cursor: pointer;
        width: 100%;
        transition: 0.2s;
        padding: 5px;
    }

        .attach-item:hover[b-6ohnq9775u] {
            background-color: #f5f6f6;
            border-radius: 5px;
        }

        .attach-item span[b-6ohnq9775u] {
            font-size: 0.9rem;
        }

    .icon-circle[b-6ohnq9775u] {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2A282A;
    }
    /* ----------------------------------------------
   5. Telefono Blokeado
   ---------------------------------------------- */
    .restriction-card[b-6ohnq9775u] {
        background: rgba(255, 245, 245, 0.7);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(220, 53, 69, 0.15);
        border-radius: 16px;
        padding: 1.25rem;
        transition: all 0.3s ease;
    }

    .restriction-icon-wrapper[b-6ohnq9775u] {
        width: 50px;
        height: 50px;
        background: #fff;
        color: #dc3545;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
    }

    .restriction-title[b-6ohnq9775u] {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
        color: #a94442;
    }

    .restriction-subtitle[b-6ohnq9775u] {
        font-size: 0.8rem;
        color: #856404;
        opacity: 0.8;
    }

    .btn-unlock[b-6ohnq9775u] {
        background-color: #dc3545;
        border: none;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 8px 20px;
        box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
        transition: 0.3s;
    }

        .btn-unlock:hover[b-6ohnq9775u] {
            background-color: #b02a37;
            transform: translateY(-1px);
            box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
        }
    /* ----------------------------------------------
   5. Zona de Drag y Drop
   ---------------------------------------------- */
    .drop-zone-overlay[b-6ohnq9775u] {
        position: absolute;
        inset: 0px;
        bottom: 0;
        background: rgba(240, 242, 245, 0.1);
        backdrop-filter: blur(5px);
        z-index: 4;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        pointer-events: none;
    }

    .drop-zone-content[b-6ohnq9775u] {
        background: #ffffff;
        padding: 3rem 4rem;
        border-radius: 24px;
        border: 3px dashed #25D366;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: scale(0.9);
        animation: popInDrop-b-6ohnq9775u 0.2s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    /* ----------------------------------------------
   5. Multimedia y Archivos de Entrada Chat
   ---------------------------------------------- */
    .chat-image-wrapper[b-6ohnq9775u] {
        position: relative;
        display: flex;
        justify-content: center;
        max-width: 250px;
        height: auto;
        border-radius: 10px;
    }

    .chat-image[b-6ohnq9775u] {
        display: block;
        width: 100%;
        border-radius: 10px;
        max-height: 400px;
        object-fit: cover;
    }

    .image-loading[b-6ohnq9775u], .sticker-loading[b-6ohnq9775u] {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(2px);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .chat-video-wrapper[b-6ohnq9775u] {
        position: relative;
        max-width: 340px;
    }

    .chat-video[b-6ohnq9775u] {
        max-width: 100%;
        min-height: 280px;
        border-radius: 10px;
        background: #000000;
    }

    .video-play-btn[b-6ohnq9775u] {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: none;
        background: rgba(0, 0, 0, 0.6);
        color: #ffffff;
        font-size: 26px;
        cursor: pointer;
        transition: opacity 0.2s ease;
    }

        .video-play-btn.hidden[b-6ohnq9775u] {
            opacity: 0;
            pointer-events: none;
        }

    .chat-video-wrapper:hover .video-play-btn:not(.hidden)[b-6ohnq9775u] {
        opacity: 1;
    }

    .chat-sticker[b-6ohnq9775u] {
        overflow: hidden;
        border-radius: 10px;
        max-width: 150px;
        max-height: 160px;
        object-fit: contain;
    }

    .plyr[b-6ohnq9775u] {
        background: #F1F3F4;
        border-radius: 8px;
    }
    /* ----------------------------------------------
   5. Multimedia y Archivos de Salida
   ---------------------------------------------- */

    .file-loader-wrapper[b-6ohnq9775u] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        min-height: 250px;
        background-color: transparent;
        animation: fadeInLoader-b-6ohnq9775u 0.3s ease-out;
    }

    .file-icon-animated[b-6ohnq9775u] {
        position: relative;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 168, 132, 0.15);
        margin-bottom: 1.5rem;
    }

        .file-icon-animated i[b-6ohnq9775u] {
            color: #00a884;
            font-size: 2rem;
            z-index: 2;
        }

        .file-icon-animated[b-6ohnq9775u]::before,
        .file-icon-animated[b-6ohnq9775u]::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid rgba(0, 168, 132, 0.6);
            animation: ripple-file-b-6ohnq9775u 1.5s linear infinite;
            z-index: 1;
        }

        .file-icon-animated[b-6ohnq9775u]::after {
            animation-delay: 0.75s;
        }

    .file-loader-text[b-6ohnq9775u] {
        font-size: 0.95rem;
        color: #3b4a54;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .loading-dots[b-6ohnq9775u]::after {
        content: '';
        animation: typing-dots-b-6ohnq9775u 1.5s steps(4, end) infinite;
    }

    .main-preview-item[b-6ohnq9775u] {
        display: flex;
        justify-content: center;
    }

        .main-preview-item img[b-6ohnq9775u] {
            max-width: 60%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid #C5C5C6;
        }

        .main-preview-item .video[b-6ohnq9775u] {
            max-width: 60%;
            max-height: 90vh;
            border-radius: 8px;
            margin-bottom: 10px;
            border-radius: 10px;
        }

    #pdfPreview[b-6ohnq9775u] {
        border: 1px solid #C5C5C6;
        border-radius: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .preview-placeholder[b-6ohnq9775u] {
        background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(248,249,250,1) 100%);
        border: 2px dashed #e9ecef;
        border-radius: 24px;
        padding: 2rem;
        min-width: 400px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

        .preview-placeholder:hover[b-6ohnq9775u] {
            border-color: #0d6efd;
            transform: scale(1.01);
            background: #ffffff;
        }

    .preview-icon-container[b-6ohnq9775u] {
        background: #f1f3f5;
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 1.5rem;
        color: #6c757d;
        font-size: 2.5rem;
        transition: 0.3s;
    }

    .preview-placeholder:hover .preview-icon-container[b-6ohnq9775u] {
        background: #e7f0ff;
        color: #0d6efd;
    }

    .preview-title[b-6ohnq9775u] {
        font-weight: 700;
        color: #343a40;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .preview-text[b-6ohnq9775u] {
        color: #adb5bd;
        font-weight: 400;
        max-width: 250px;
    }
    /* ----------------------------------------------
   5. Visor de Multimendia de Mensajes Recibidos
   ---------------------------------------------- */
    .visor-overlay[b-6ohnq9775u] {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        display: flex;
        flex-direction: column;
    }

    .visor-header[b-6ohnq9775u] {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        padding: 15px;
    }

    .btn-icon.overlay[b-6ohnq9775u] {
        border: none;
        background: transparent;
        color: var(--color-polarity);
        font-size: 1.2rem;
        transition: all 0.05s ease;
    }

        .btn-icon.overlay i[b-6ohnq9775u] {
            -webkit-text-stroke: 0.5px #ffffff;
        }

        .btn-icon.overlay.text-danger i[b-6ohnq9775u] {
            -webkit-text-stroke: 2px red;
        }

        .btn-icon.overlay:hover[b-6ohnq9775u] {
            color: white;
            transform: scale(1.15);
            background: transparent;
        }

    .btn-icon overlay:active[b-6ohnq9775u] {
        transform: scale(0.92);
    }

    .visor-body[b-6ohnq9775u] {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: auto;
    }

    .visor-img[b-6ohnq9775u] {
        width: auto;
        height: 100%;
        object-fit: contain !important;
        transition: transform 0.2s ease;
    }

    .visor-thumbs[b-6ohnq9775u] {
        display: flex;
        justify-content: center;
        gap: 10px;
        overflow-x: auto;
        padding: 10px;
        background: #111111;
    }

    .thumb[b-6ohnq9775u] {
        border: 1px solid #141414;
        border-radius: 10px;
        background: #2F2F2F;
        height: 80px;
        width: 80px;
        object-fit: cover;
        cursor: pointer;
        padding: 5px;
        opacity: 0.7;
        transition: opacity 0.2s;
    }

        .thumb:hover[b-6ohnq9775u] {
            opacity: 1;
        }

    .adjunto-preview[b-6ohnq9775u] {
        position: absolute;
        inset: 0;
        background: #ffffff;
        z-index: 4;
        display: flex;
        padding: 0 15px;
        flex-direction: column;
    }

    .preview-header[b-6ohnq9775u] {
        height: 55px;
        padding: 5px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-close-preview[b-6ohnq9775u] {
        position: absolute;
        background: none;
        border: none;
        color: #000000;
        left: 20px;
        font-size: 1.5rem;
    }

    .preview-body[b-6ohnq9775u] {
        position: relative;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .input-text-file[b-6ohnq9775u] {
        width: 100%;
        margin-bottom: 20px;
        left: 0px;
    }

    [b-6ohnq9775u] .wa-textarea {
        border-radius: 25px;
        padding: 8px 20px;
        box-shadow: none;
        max-width: 650px;
    }

    .preview-footer[b-6ohnq9775u] {
        position: relative;
        padding: 20px 10px;
    }

    .thumbnail-strip[b-6ohnq9775u] {
        gap: 10px;
    }

    .thumb-item[b-6ohnq9775u], .thumb-add-more[b-6ohnq9775u] {
        width: 55px;
        height: 55px;
        border-radius: 8px;
        border: 2px solid #F8F9FA;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        cursor: pointer;
    }

        .thumb-item.active[b-6ohnq9775u] {
            border-color: #00a884;
        }

        .thumb-item img[b-6ohnq9775u] {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .btn-send-wa[b-6ohnq9775u] {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #00a884;
        color: #ffffff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

        .btn-send-wa:disabled[b-6ohnq9775u] {
            background: #54656f;
            opacity: 0.6;
        }

    .btn-dark[b-6ohnq9775u] {
        background-color: #2a2a2a;
        border: none;
        color: #ffffff;
    }

        .btn-dark:hover[b-6ohnq9775u] {
            background: #3a3a3a !important;
        }

    .btn-danger[b-6ohnq9775u] {
        background-color: #ff3b30;
        border: none;
        color: #ffffff;
    }

        .btn-danger:hover[b-6ohnq9775u] {
            background-color: #e03128 !important;
        }
    /* ----------------------------------------------
   5. Panel Informativo de Contacto
   ---------------------------------------------- */

    .chat-info-panel[b-6ohnq9775u] {
        width: 370px;
        height: calc(100vh - 50px);
        position: relative;
        z-index: 4;
        background: white;
        animation: slideInRight-b-6ohnq9775u 0.2s ease-out;
        overflow-y: auto;
    }

    .btn-icon[b-6ohnq9775u] {
        border: none;
        color: var(--color-polarity);
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        transition: background 0.2s, transform 0.1s;
    }

        .btn-icon:hover[b-6ohnq9775u] {
            background: #E2E2E2;
            font-size: 1rem;
        }

[data-theme='dark'] .btn-icon:hover[b-6ohnq9775u] {
    background: #161B22;
    font-size: 1rem;
}

.btn-icon:active[b-6ohnq9775u] {
    transform: scale(0.92);
}

    @keyframes slideInRight-b-6ohnq9775u {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(0);
        }
    }

    .template-dropdown[b-6ohnq9775u] {
        width: 340px;
        max-height: 420px;
        overflow-y: auto;
    }

    .template-item[b-6ohnq9775u] {
        padding: 10px;
        cursor: pointer;
        transition: background-color .15s ease;
    }

        .template-item:hover[b-6ohnq9775u] {
            background-color: #f5f5f5;
        }

    .template-title[b-6ohnq9775u] {
        font-size: 0.85rem;
        font-weight: 600;
        color: #075E54;
        margin-bottom: 4px;
    }

    .template-preview[b-6ohnq9775u] {
        font-size: 0.7rem;
        color: #444444;
        line-height: 1.3;
        text-align: justify;
    }

    .whatsapp-btn[b-6ohnq9775u] {
        display: block;
        padding: 10px;
        border-top: 1px solid #95E7B8;
        background: transparent;
        color: #18AA44;
        font-weight: 500;
        transition: all 0.2s ease-in-out;
    }

        .whatsapp-btn:hover[b-6ohnq9775u] {
            background-color: #B9F8D9;
        }

        .whatsapp-btn:active[b-6ohnq9775u] {
            transform: scale(0.98);
        }

    @media (max-width: 991px) {
        .contenedor[b-6ohnq9775u] {
        }

        .chat[b-6ohnq9775u] {
            position: relative;
            height: calc(100vh - 100px);
        }

        .area-mensajes[b-6ohnq9775u] {
            height: calc(100vh - 160px);
            padding-bottom: 80px;
        }
    }
    /* ---------------------------------------------- 
   9. Responsivo Pantallas Medianas
   ---------------------------------------------- */
    @media (max-width: 800px) {
        .message-status[b-6ohnq9775u] {
            font-size: 0.7rem;
        }

            .message-status i[title]:hover[b-6ohnq9775u]::after {
                display: none;
            }



        .message-bubble[b-6ohnq9775u] {
            max-width: 80%;
        }

        .adjunto-preview[b-6ohnq9775u] {
            margin-top: 10px;
        }

        .show-mobile[b-6ohnq9775u] {
            display: block !important;
            width: 100% !important;
            height: 100%;
        }

        .hide-mobile[b-6ohnq9775u] {
            display: none !important;
        }

        .chat[b-6ohnq9775u] {
            height: calc(100vh - 100px);
        }

        .chat-info-panel[b-6ohnq9775u] {
            width: 100%;
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 1050;
            transition: all 0.3s ease;
        }
    }
/* /Pages/Administracion/Planes/Formulario.razor.rz.scp.css */
body[b-wc9aapobpc] {
}

.subscription-icon-wrapper[b-wc9aapobpc] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/*-------------------------
       Status Badge
 --------------------------*/

.status-badge[b-wc9aapobpc] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

    .status-badge.active[b-wc9aapobpc] {
        background: linear-gradient(135deg, #d4edda, #c3e6cb);
        color: #155724;
    }

    .status-badge.draft[b-wc9aapobpc] {
        background: linear-gradient(135deg, #fff3cd, #ffeaa7);
        color: #856404;
    }

.status-message.active[b-wc9aapobpc] {
    background-color: #f8fff8;
    border: 1px solid #d1edff;
}

.status-message.draft[b-wc9aapobpc] {
    background-color: #fffdf6;
    border: 1px solid #ffeeba;
}
/*-------------------------
     Button Subscription
 --------------------------*/

.btn-subscription[b-wc9aapobpc] {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    border: none;
    color: white !important;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3);
}

    .btn-subscription:hover[b-wc9aapobpc] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(78, 84, 200, 0.45);
    }

    .btn-subscription:active[b-wc9aapobpc] {
        transform: translateY(0);
        box-shadow: 0 3px 10px rgba(78, 84, 200, 0.2);
    }
/* /Pages/Administracion/Planes/Planes.razor.rz.scp.css */
body[b-t90lvsw6i3] {
}
.card-header[b-t90lvsw6i3]{
    padding: 12px 0;
}

.plan-card[b-t90lvsw6i3] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.plan-card:hover[b-t90lvsw6i3] {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.option-card[b-t90lvsw6i3] {
    transition: all 0.2s ease;
    cursor: pointer;
}

    .option-card:hover[b-t90lvsw6i3] {
        background-color: #f8f9fa;
        border-color: #4e73df !important;
    }

.add-plan-card[b-t90lvsw6i3] {
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #f8f9fa;
}

    .add-plan-card:hover[b-t90lvsw6i3] {
        background-color: #e9ecef;
        border-color: #4e73df !important;
    }

.admin-controls[b-t90lvsw6i3] {
    z-index: 10;
}

.extra-small[b-t90lvsw6i3] {
    font-size: 0.7rem;
}

.border-dashed[b-t90lvsw6i3] {
    border-style: dashed !important;
}


.btn-subscription[b-t90lvsw6i3] {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
    color: #fff;
    font-size: 1.05rem;
    border-radius: 0.3rem;
    width: auto !important;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

    /* Hover elegante (sin mover el botón) */
    .btn-subscription:hover[b-t90lvsw6i3] {
        background: linear-gradient(135deg, #0b5ed7, #094db5);
        color: #fff;
    }

    /* Focus accesible */
    .btn-subscription:focus[b-t90lvsw6i3] {
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.35);
    }
/* /Pages/Administracion/Tramites/Gestion.razor.rz.scp.css */
body[b-mr22xfgwxn] {
}

/*--------------------------------
       Estilos para envios
---------------------------------*/
.envio-badge[b-mr22xfgwxn] {
    transition: all .2s ease;
}

    .envio-badge:hover[b-mr22xfgwxn] {
        transform: scale(1.05);
    }

.envio-dropdown[b-mr22xfgwxn] {
    border-radius: 10px;
    font-size: 0.9rem;
}
/* /Pages/Administracion/Tramites/MIsTramites.razor.rz.scp.css */
.icon-hover-grow[b-8zihdlwrnt] {
    transition: transform 0.15s ease-in-out;
}

    .icon-hover-grow:hover[b-8zihdlwrnt] {
        transform: scale(1.2);
    }


/*--------------------------------
       Estilos para envios
---------------------------------*/
.envio-badge[b-8zihdlwrnt] {
    transition: all .2s ease;
}

    .envio-badge:hover[b-8zihdlwrnt] {
        transform: scale(1.05);
    }

.envio-dropdown[b-8zihdlwrnt] {
    border-radius: 10px;
    font-size: 0.9rem;
}
/* /Pages/Administracion/Usuarios/Administrativos/FormContrato.razor.rz.scp.css */
body[b-yfvia8vnqc] {
}

.icon-sol[b-yfvia8vnqc] {
    width: 1.2rem; 
    height: auto;
    object-fit: contain;
}
/* /Pages/Administracion/Usuarios/Administrativos/Gestion.razor.rz.scp.css */
body[b-nmmevlkh4r] {
}

.tabla-empleados[b-nmmevlkh4r] {
    font-size: 0.9rem;
}

    .tabla-empleados thead th[b-nmmevlkh4r] {
        color: #585857;
        font-weight: 600;
        background: transparent;
        border-bottom: 2px solid #52AAAB;
    }

    .tabla-empleados tbody td[b-nmmevlkh4r] {
        vertical-align: middle;
    }

    .tabla-empleados .estado-activo[b-nmmevlkh4r] {
        color: #198754;
        font-weight: 600;
    }

    .tabla-empleados .estado-inactivo[b-nmmevlkh4r] {
        color: #dc3545;
        font-weight: 600;
    }

.cargo-chip[b-nmmevlkh4r] {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #343a40;
    font-weight: 500;
    padding: 0.55rem 0.9rem;
    border-radius: 0.6rem;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease-in-out;
}

    .cargo-chip:hover[b-nmmevlkh4r] {
        color: #fff;
        border-color: #0d6efd;
        transform: translateY(-1px);
    }
/* /Pages/Autenticacion/ConfirmacionEmail.razor.rz.scp.css */
.container[b-omq29w55y0] {
    height: 100vh;
    width: 100%;
}

.imagen[b-omq29w55y0] {
    width: 8rem;
    height: 8rem;
}

.container-correo[b-omq29w55y0] {
    background-color: #84F5AE;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

.container-correo-hijo[b-omq29w55y0] {
    background-color: #1ADB50;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
}

.icono[b-omq29w55y0] {
    font-size: 1rem;
    color: white;
}

.Suse[b-omq29w55y0] {
    font-weight: 600;
}

.correo[b-omq29w55y0] {
    background-color: #E8E8E8;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    color: #8B8B8B;
    padding: 2px 15px;
}
/* /Pages/Autenticacion/Login.razor.rz.scp.css */
.form-signin[b-tm1wgkcn0t] {
    max-width: 380px;
}

/*Sobreponer cajas de textos selccionadas*/
.form-floating:focus-within[b-tm1wgkcn0t] {
    z-index: 2;
}

button[b-tm1wgkcn0t] {
    height: 45px;
}

/*Button Iniciar Sesión*/
.btn-gradient[b-tm1wgkcn0t] {
    background: linear-gradient(45deg, #11008A, #0B5ED7); /* azul oscuro -> azul vivo */
    background-size: 200% 200%;
    border: none;
    color: #fff;
    width: 100%;
    font-weight: 500;
    transition: 0.3s;
}

    .btn-gradient:hover[b-tm1wgkcn0t] {
        background-position: right center; /* mueve el degradado */
    }
/* /Pages/Autenticacion/OlvideContraseña.razor.rz.scp.css */
body[b-97108x6xeq] {
}

/* Efectos hover para el botón */
.btn-primary[b-97108x6xeq] {
    transition: all 0.3s ease;
}

    .btn-primary:hover:not(:disabled)[b-97108x6xeq] {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

/* Estilos para el formulario */
.form-control[b-97108x6xeq] {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

    .form-control:focus[b-97108x6xeq] {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    }

/* Enlace de regreso */
a[b-97108x6xeq] {
    color: #667eea;
    transition: color 0.3s ease;
}

    a:hover[b-97108x6xeq] {
        color: #764ba2;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .recovery-card[b-97108x6xeq] {
        margin: 1rem;
    }

    .recovery-icon[b-97108x6xeq] {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
/* /Pages/Autenticacion/Registro.razor.rz.scp.css */
body[b-pxtofvm97z] {
}

.link-cuenta[b-pxtofvm97z] {
    color: #1f3a5f;
    font-weight: 500;
    text-decoration: none;
}

    .link-cuenta:hover[b-pxtofvm97z] {
        text-decoration: underline;
        color: #162c46;
    }
/* /Pages/Home.razor.rz.scp.css */
body[b-o6noz2bq49] {
}

.dropdown-menu[b-o6noz2bq49] {
    right: 0;
    left: auto;
}

@media (max-width: 768px) {
    .dropdown-menu[b-o6noz2bq49] {
        left: 0px;
        top: -190px;
        right: auto;
    }
}
/* /Pages/Planes/Configuracion.razor.rz.scp.css */
body[b-4cw7wd3ow4] {
}

.configuracion-suscripcion[b-4cw7wd3ow4] {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.payment-option[b-4cw7wd3ow4] {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

    .payment-option:hover[b-4cw7wd3ow4] {
        border-color: #0d6efd;
        background-color: #f8f9fa;
    }

    .payment-option.selected[b-4cw7wd3ow4] {
        border-color: #0d6efd;
        background-color: #f0f7ff;
    }

.payment-icon[b-4cw7wd3ow4] {
    font-size: 1.5rem;
    color: #6c757d;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.payment-option.selected .payment-icon[b-4cw7wd3ow4] {
    color: #0d6efd;
}

.payment-details[b-4cw7wd3ow4] {
    flex: 1;
}

.payment-check[b-4cw7wd3ow4] {
    color: #0d6efd;
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-option.selected .payment-check[b-4cw7wd3ow4] {
    opacity: 1;
}

.cuota-option[b-4cw7wd3ow4] {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .cuota-option:hover[b-4cw7wd3ow4] {
        background: #F8F9FA;
        border-color: #0d6efd;
        transform: translateY(-2px);
    }

    .cuota-option.selected[b-4cw7wd3ow4] {
        border-color: #0d6efd;
        background-color: #f0f7ff;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(13, 110, 253, 0.1);
    }

.cuota-number[b-4cw7wd3ow4] {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0030FF;
}

.cuota-text[b-4cw7wd3ow4] {
    font-size: 1rem;
    color: #6c757d;
}

.cuota-price[b-4cw7wd3ow4] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
}

.qr-container[b-4cw7wd3ow4] {
    border: 1px solid #dee2e6;
}

.qr-image[b-4cw7wd3ow4] {
    max-width: 200px;
    height: auto;
}

.modal-backdrop[b-4cw7wd3ow4] {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .payment-option[b-4cw7wd3ow4] {
        padding: 1rem;
    }

    .payment-icon[b-4cw7wd3ow4] {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }

    .cuota-option[b-4cw7wd3ow4] {
        padding: 1rem 0.5rem;
    }

    .cuota-number[b-4cw7wd3ow4] {
        font-size: 1.5rem;
    }
}

/*-------------------------------
    Boton Finalizar Compra
--------------------------------*/

.btn-subscription[b-4cw7wd3ow4] {
    background: linear-gradient(135deg, #00008D 0%, #0030FF 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 30px;
    box-shadow: 0 4px 15px 0 rgba(79, 172, 254, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

    .btn-subscription:hover[b-4cw7wd3ow4] {
        transform: translateY(-3px);
        background: linear-gradient(135deg, #0035E1 0%, #0079FF 100%);
    }

    .btn-subscription:active[b-4cw7wd3ow4] {
        transform: translateY(-1px);
        color: #AAD2FF;
    }

    .btn-subscription:disabled[b-4cw7wd3ow4] {
        background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
        box-shadow: 0 4px 15px 0 rgba(153, 153, 153, 0.4);
        transform: none;
        cursor: not-allowed;
    }

        .btn-subscription:disabled:hover[b-4cw7wd3ow4] {
            transform: none;
            box-shadow: 0 4px 15px 0 rgba(153, 153, 153, 0.4);
        }

    /* Efecto de brillo al pasar el cursor */
    .btn-subscription[b-4cw7wd3ow4]::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.7s ease;
    }

    .btn-subscription:hover[b-4cw7wd3ow4]::after {
        left: 100%;
    }

    /* Icono de flecha */
    .btn-subscription[b-4cw7wd3ow4]::before {
        content: '→';
        margin-right: 8px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .btn-subscription:hover[b-4cw7wd3ow4]::before {
        transform: translateX(3px);
    }
/* /Pages/Redireccion/Redireccionar.razor.rz.scp.css */
.access-denied[b-pkkhj0x11i] {
    width: 30rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    border-radius: 8px; 
}

.lock-icon[b-pkkhj0x11i] {
    font-size: 60px;
    color: #dc3545;
    margin-bottom: 0;
}

.Error403[b-pkkhj0x11i] {
    font-size: 30px;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 20px;
}

.message-title[b-pkkhj0x11i] {
    font-size: 30px;
    font-weight: bold;
    color: #721c24;
    margin-bottom: 10px;
}

.message-text[b-pkkhj0x11i] {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
}
/* /Utilidades/Loaders/Reportes.razor.rz.scp.css */
/* From Uiverse.io by csozidev */
/* 3D tower loader made by: csozi | Website: www.csozi.hu*/

.loader[b-sycezbzfaj] {
    scale: 3;
    height: 50px;
    width: 40px;
}

.box[b-sycezbzfaj] {
    position: relative;
    opacity: 0;
    left: 10px;
}

.side-left[b-sycezbzfaj] {
    position: absolute;
    background-color: #286cb5;
    width: 19px;
    height: 5px;
    transform: skew(0deg, -25deg);
    top: 14px;
    left: 10px;
}

.side-right[b-sycezbzfaj] {
    position: absolute;
    background-color: #2f85e0;
    width: 19px;
    height: 5px;
    transform: skew(0deg, 25deg);
    top: 14px;
    left: -9px;
}

.side-top[b-sycezbzfaj] {
    position: absolute;
    background-color: #5fa8f5;
    width: 20px;
    height: 20px;
    rotate: 45deg;
    transform: skew(-20deg, -20deg);
}

.box-1[b-sycezbzfaj] {
    animation: from-left-b-sycezbzfaj 4s infinite;
}

.box-2[b-sycezbzfaj] {
    animation: from-right-b-sycezbzfaj 4s infinite;
    animation-delay: 1s;
}

.box-3[b-sycezbzfaj] {
    animation: from-left-b-sycezbzfaj 4s infinite;
    animation-delay: 2s;
}

.box-4[b-sycezbzfaj] {
    animation: from-right-b-sycezbzfaj 4s infinite;
    animation-delay: 3s;
}

@keyframes from-left-b-sycezbzfaj {
    0% {
        z-index: 20;
        opacity: 0;
        translate: -20px -6px;
    }

    20% {
        z-index: 10;
        opacity: 1;
        translate: 0px 0px;
    }

    40% {
        z-index: 9;
        translate: 0px 4px;
    }

    60% {
        z-index: 8;
        translate: 0px 8px;
    }

    80% {
        z-index: 7;
        opacity: 1;
        translate: 0px 12px;
    }

    100% {
        z-index: 5;
        translate: 0px 30px;
        opacity: 0;
    }
}

@keyframes from-right-b-sycezbzfaj {
    0% {
        z-index: 20;
        opacity: 0;
        translate: 20px -6px;
    }

    20% {
        z-index: 10;
        opacity: 1;
        translate: 0px 0px;
    }

    40% {
        z-index: 9;
        translate: 0px 4px;
    }

    60% {
        z-index: 8;
        translate: 0px 8px;
    }

    80% {
        z-index: 7;
        opacity: 1;
        translate: 0px 12px;
    }

    100% {
        z-index: 5;
        translate: 0px 30px;
        opacity: 0;
    }
}
/* /Utilidades/NotFound.razor.rz.scp.css */
.no-data-container[b-tzvdblito1] {
    min-height: 70vh;
    background-color: #f8f9fa; /* Gris suave */
    border-radius: 12px;
}

.no-data-img[b-tzvdblito1] {
    max-width: 220px;
    opacity: 0.9;
}
/* /Utilidades/Notificacion.razor.rz.scp.css */
.color-themes[b-q3wfs17dcx] {
    --color-success-bg: #C4F1D4; /* Fondo verde un poco más fuerte */
    --color-success-border: #34C759; /* Verde vibrante */
    --color-success-text: #247141; /* Verde oscuro para texto */
    --color-success-btn-bg: #A8E7BF; /* Botón verde sutil */

    --color-warning-bg: #FFE3B5; /* Fondo naranja un poco más fuerte */
    --color-warning-border: #FFA726; /* Naranja cálido */
    --color-warning-text: #E65100; /* Naranja oscuro para texto */
    --color-warning-btn-bg: #FFD59A; /* Botón naranja sutil */

    --color-error-bg: #FFC1C6; /* Fondo rosado un poco más fuerte */
    --color-error-border: #FF3B30; /* Rojo intenso */
    --color-error-text: #D32F2F; /* Rojo oscuro para texto */
    --color-error-btn-bg: #FFACB3; /* Botón rojo sutil */

    --color-info-bg: #B9DFF8; /* Fondo azul un poco más fuerte */
    --color-info-border: #2196F3; /* Azul brillante */
    --color-info-text: #0D47A1; /* Azul oscuro para texto */
    --color-info-btn-bg: #9ACCEE; /* Botón azul sutil */
}


.alert[b-q3wfs17dcx] {
    padding: 5px 57px;
    width: 380px;
    min-height: 40px;
    position: fixed;
    top: 5px;
    right: -480px;
    border: none;
    border-radius: 4px;
    border-left: 8px solid;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 1050;
    transition: right 0.5s ease, opacity 0.5s ease;
    display: flex;
    align-items: center;
}

    .alert.showAlert[b-q3wfs17dcx] {
        right: 5px;
        opacity: 1;
        pointer-events: auto;
    }

    .alert.hideAlert[b-q3wfs17dcx] {
        background: red;
        right: -480px;
        opacity: 0;
        pointer-events: none;
    }

    .alert .icono[b-q3wfs17dcx] {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
    }

    .alert .msg[b-q3wfs17dcx] {
        font-weight: 400;
        font-size: 15px;
        word-wrap: break-word;
    }

    .alert .close-btn[b-q3wfs17dcx] {
        height: 100%;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px;
        cursor: pointer;
        font-size: 30px;
    }

    /* Success */
    .alert.success[b-q3wfs17dcx] {
        background: var(--color-success-bg);
        border-left-color: var(--color-success-border);
        color: var(--color-success-text);
    }

        .alert.success .close-btn[b-q3wfs17dcx] {
            background-color: var(--color-success-btn-bg);
            color: var(--color-success-text);
        }

        .alert.success .bi-check-circle-fill[b-q3wfs17dcx] {
            font-size: 25px;
            color: var(--color-success-border);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

    /* Warning */
    .alert.warning[b-q3wfs17dcx] {
        background: var(--color-warning-bg);
        border-left-color: var(--color-warning-border);
        color: var(--color-warning-text);
    }

        .alert.warning .close-btn[b-q3wfs17dcx] {
            background-color: var(--color-warning-btn-bg);
            color: var(--color-warning-text);
        }

        .alert.warning .bi-exclamation-circle-fill[b-q3wfs17dcx] {
            font-size: 25px;
            color: var(--color-warning-border);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

    /* Error */
    .alert.error[b-q3wfs17dcx] {
        background: var(--color-error-bg);
        border-left-color: var(--color-error-border);
        color: var(--color-error-text);
    }

        .alert.error .close-btn[b-q3wfs17dcx] {
            background-color: var(--color-error-btn-bg);
            color: var(--color-error-text);
        }

        .alert.error .bi-x-circle-fill[b-q3wfs17dcx] {
            font-size: 25px;
            color: var(--color-error-border);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

    /* Info */
    .alert.info[b-q3wfs17dcx] {
        background: var(--color-info-bg);
        border-left-color: var(--color-info-border);
        color: var(--color-info-text);
    }

        .alert.info .close-btn[b-q3wfs17dcx] {
            background-color: var(--color-info-btn-bg);
            color: var(--color-info-text);
        }

        .alert.info .bi-info-circle-fill[b-q3wfs17dcx] {
            font-size: 25px;
            color: var(--color-info-border);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
        }
/* /Utilidades/SinRegistros.razor.rz.scp.css */

.empty-state-container[b-25yfeqm40o] {
    padding: 4rem 2rem;
    background: radial-gradient(circle, rgba(248,249,250,1) 0%, rgba(255,255,255,1) 100%);
    border: 2px dashed #e9ecef;
    border-radius: 24px;
    margin: 1rem 0;
}

.icon-wrapper[b-25yfeqm40o] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #6c757d;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    animation: float-b-25yfeqm40o 3s ease-in-out infinite;
    font-size: 2.5rem; 
}

.empty-state-title[b-25yfeqm40o] {
    color: #2d3436;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Roboto', sans-serif;
}

.empty-state-description[b-25yfeqm40o] {
    max-width: 320px;
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}


@keyframes float-b-25yfeqm40o {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.empty-state-container i[b-25yfeqm40o] {
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
