/* _content/AsiscomexCI/Components/Layout/LoadingOverlay.razor.rz.scp.css */
.loading-overlay[b-0z29wbox7o] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn-b-0z29wbox7o 0.3s ease-in-out;
    backdrop-filter: blur(5px);
}

.loading-container[b-0z29wbox7o] {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    max-width: 80%;
    text-align: center;
    transform: scale(0.9);
    animation: popIn-b-0z29wbox7o 0.4s cubic-bezier(0.18, 1.25, 0.4, 1) forwards;
}

/* Spinner personalizado animado */
.loading-spinner[b-0z29wbox7o] {
    width: 70px;
    height: 70px;
    position: relative;
}

.spinner-inner[b-0z29wbox7o] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--mud-palette-primary);
    border-left-color: var(--mud-palette-primary);
    animation: spin-b-0z29wbox7o 1s linear infinite;
    box-sizing: border-box;
    position: relative;
}

    .spinner-inner[b-0z29wbox7o]:before, .spinner-inner[b-0z29wbox7o]:after {
        content: '';
        position: absolute;
        border-radius: 50%;
        border: 4px solid transparent;
        box-sizing: border-box;
    }

    .spinner-inner[b-0z29wbox7o]:before {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-top-color: #67c52a;
        border-left-color: #67c52a;
        animation: spin-b-0z29wbox7o 1.5s linear infinite reverse;
    }

    .spinner-inner[b-0z29wbox7o]:after {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-top-color: #ff6b6b;
        border-left-color: #ff6b6b;
        animation: spin-b-0z29wbox7o 1s linear infinite;
    }

/* Animaciones */
@keyframes spin-b-0z29wbox7o {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn-b-0z29wbox7o {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn-b-0z29wbox7o {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    70% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* _content/AsiscomexCI/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-vhcoqz7f0d] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f7fa;
}

main[b-vhcoqz7f0d] {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.top-row[b-vhcoqz7f0d] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 34px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}

.content[b-vhcoqz7f0d] {
    flex: 1;
    padding-top: 34px; /* Altura del navbar */
    width: 100%;
    background-color: #f5f7fa;
    min-height: calc(100vh - 64px);
}

    /* Contenedor principal m�s amplio */
    .content[b-vhcoqz7f0d]  .mud-container-maxwidth-xl {
        max-width: 1440px !important;
    }

    .content[b-vhcoqz7f0d]  .mud-container-maxwidth-xxl {
        max-width: 1920px !important;
    }

/* Ajustes para pantallas grandes */
@media (min-width: 1920px) {
    .content[b-vhcoqz7f0d]  .mud-container {
        max-width: 1600px !important;
    }
}

/* Animaci�n de entrada suave */
.content > *[b-vhcoqz7f0d] {
    animation: fadeInUp-b-vhcoqz7f0d 0.3s ease-out;
}

/* Indicador visual cuando est� offline */
.mud-layout.offline[b-vhcoqz7f0d] {
    position: relative;
}

    .mud-layout.offline[b-vhcoqz7f0d]::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
        pointer-events: none;
        z-index: 999;
    }

/* Ajustar el layout cuando se muestra el banner de conectividad */
.mud-layout.connectivity-banner-visible .mud-main-content[b-vhcoqz7f0d] {
    padding-top: 60px;
    transition: padding-top 0.3s ease-in-out;
}

@keyframes fadeInUp-b-vhcoqz7f0d {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error UI */
#blazor-error-ui[b-vhcoqz7f0d] {
    background: #fff3cd;
    border-top: 1px solid #ffeaa7;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
}

    #blazor-error-ui .dismiss[b-vhcoqz7f0d] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
        font-size: 1.5rem;
        color: #856404;
    }

    #blazor-error-ui .reload[b-vhcoqz7f0d] {
        color: #856404;
        font-weight: 600;
    }

/* Responsive para m�viles */
@media (max-width: 768px) {
    .content[b-vhcoqz7f0d] {
        padding-top: 56px; /* Navbar m�s peque�o en m�vil */
    }

        .content[b-vhcoqz7f0d]  .mud-container {
            padding-left: 16px !important;
            padding-right: 16px !important;
        }
}

/* Mejoras de rendimiento */
*[b-vhcoqz7f0d] {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar personalizado */
[b-vhcoqz7f0d]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

[b-vhcoqz7f0d]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

[b-vhcoqz7f0d]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

    [b-vhcoqz7f0d]::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

/* Transiciones suaves globales */
*[b-vhcoqz7f0d] {
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Print styles */
@media print {
    .top-row[b-vhcoqz7f0d] {
        display: none !important;
    }

    .content[b-vhcoqz7f0d] {
        padding-top: 0 !important;
    }
}
/* _content/AsiscomexCI/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-lk2s9ipdjq] {
    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-lk2s9ipdjq] {
        background-color: rgba(255, 255, 255, 0.5);
    }

/* Contenedor principal de navegaci�n */
.nav-scrollable[b-lk2s9ipdjq] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-lk2s9ipdjq] {
    display: block;
}

/* Items de navegaci�n */
.nav-item[b-lk2s9ipdjq] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-lk2s9ipdjq] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-lk2s9ipdjq] {
        padding-bottom: 1rem;
    }

    /* Enlaces de navegaci�n */
    .nav-item[b-lk2s9ipdjq]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
        justify-content: center;
        transition: all 0.3s ease;
        padding: 0 0.5rem;
        overflow: hidden;
    }

    .nav-item[b-lk2s9ipdjq]  a.active {
        background-color: rgba(255,255,255,0.37);
        color: white;
    }

    .nav-item[b-lk2s9ipdjq]  .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

/* Iconos MudBlazor */
.mud-icon-custom[b-lk2s9ipdjq] {
    color: white !important;
    min-width: 1.5rem !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    margin-right: 0;
    transition: margin-right 0.3s ease;
    flex-shrink: 0;
}

/* Texto del men� - Por defecto oculto */
.nav-text[b-lk2s9ipdjq] {
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, width 0.3s ease;
    white-space: nowrap;
    color: white;
}

/* Estados cuando el sidebar est� expandido */
.nav-scrollable.expanded .nav-item[b-lk2s9ipdjq]  .nav-link {
    justify-content: flex-start;
    padding-left: 1rem;
}

.nav-scrollable.expanded .mud-icon-custom[b-lk2s9ipdjq] {
    margin-right: 0.75rem !important;
}

.nav-scrollable.expanded .nav-text[b-lk2s9ipdjq] {
    opacity: 1;
    width: auto;
}

/* Ajustes para items de navegaci�n */
.nav-item[b-lk2s9ipdjq] {
    padding-left: 0;
    padding-right: 0;
}

.nav-scrollable.expanded .nav-item[b-lk2s9ipdjq] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Media queries para pantallas grandes */
@media (min-width: 641px) {
    .navbar-toggler[b-lk2s9ipdjq] {
        display: none;
    }

    .nav-scrollable[b-lk2s9ipdjq] {
        display: block;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Scrollbar personalizado */
.nav-scrollable[b-lk2s9ipdjq]::-webkit-scrollbar {
    width: 6px;
}

.nav-scrollable[b-lk2s9ipdjq]::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.nav-scrollable[b-lk2s9ipdjq]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

    .nav-scrollable[b-lk2s9ipdjq]::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.5);
    }

/* Asegurar visibilidad de iconos */
[b-lk2s9ipdjq] .mud-icon-root {
    color: white !important;
}
/* _content/AsiscomexCI/Components/Layout/Notificaciones.razor.rz.scp.css */
/* Estilos para el panel de notificaciones */
[b-v69083v5ep] .notifications-drawer {
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    z-index: 2000;
}

/* Corrige la media query */
@media (max-width: 1200px) and (min-width: 600px) {
    [b-v69083v5ep] .notifications-drawer.mud-drawer-temporary:not(.mud-drawer-open) {
        display: none !important;
    }
}

[b-v69083v5ep] .mud-drawer-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
}

[b-v69083v5ep] .mud-paper {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

    [b-v69083v5ep] .mud-paper:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

[b-v69083v5ep] .mud-avatar {
    margin-top: 4px;
}

/* Estilos para notificaciones no leídas */
[b-v69083v5ep] .notification-unread {
    background-color: #e3f2fd !important;
    border-left: 4px solid #2196f3;
}

/* Estilos para notificaciones urgentes */
[b-v69083v5ep] .notification-urgent {
    border-left: 4px solid #f44336 !important;
}

/* Estilos para notificaciones de prioridad alta */
[b-v69083v5ep] .notification-high {
    border-left: 4px solid #ff9800 !important;
}

/* Estilos para el botón de notificaciones */
[b-v69083v5ep] .notification-badge {
    position: absolute;
    top: 0;
    right: 0;
}

/* Estilos específicos para el contenedor de notificaciones */
[b-v69083v5ep] .mud-drawer-container {
    padding: 8px 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

/* Estilos para las tarjetas de notificación */
[b-v69083v5ep] .notification-item {
    transition: all 0.2s ease;
    position: relative;
}

    [b-v69083v5ep] .notification-item:hover {
        background-color: #f9f9f9;
        transform: translateX(-2px);
    }

/* Animación para notificaciones nuevas */
@keyframes slideIn-b-v69083v5ep {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[b-v69083v5ep] .notification-item {
    animation: slideIn-b-v69083v5ep 0.3s ease-out;
}

/* Estilos para asegurar que el drawer aparezca correctamente */
[b-v69083v5ep] .mud-drawer.mud-drawer-right {
    height: 100vh;
    position: fixed;
    max-width: 90vw;
}

/* Scrollbar personalizado para el contenedor de notificaciones */
[b-v69083v5ep] .mud-drawer-container::-webkit-scrollbar {
    width: 6px;
}

[b-v69083v5ep] .mud-drawer-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

[b-v69083v5ep] .mud-drawer-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

    [b-v69083v5ep] .mud-drawer-container::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/* Estilos para el mensaje de "sin notificaciones" */
[b-v69083v5ep] .text-center {
    padding: 2rem;
}

/* Responsive para móviles */
@media (max-width: 600px) {
    [b-v69083v5ep] .notifications-drawer {
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0;
    }

    [b-v69083v5ep] .notification-item {
        margin: 8px !important;
    }
}
/* _content/AsiscomexCI/Components/Pages/CP/MenuCP.razor.rz.scp.css */
.menu-container[b-zoy206va9f] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.menu-title[b-zoy206va9f] {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.menu-cards[b-zoy206va9f] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-card[b-zoy206va9f] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 2rem;
    width: 280px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .menu-card:hover[b-zoy206va9f] {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

.card-icon[b-zoy206va9f] {
    margin-bottom: 1.5rem;
}

    .card-icon img[b-zoy206va9f] {
        width: 100px;
        height: 100px;
    }

.menu-card h2[b-zoy206va9f] {
    color: #3498db;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.menu-card p[b-zoy206va9f] {
    color: #7f8c8d;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .menu-cards[b-zoy206va9f] {
        flex-direction: column;
        align-items: center;
    }

    .menu-card[b-zoy206va9f] {
        width: 100%;
        max-width: 320px;
    }
}
/* _content/AsiscomexCI/Components/Pages/CP/Preview-cp.razor.rz.scp.css */
 Estilos básicos 
.cp-preview-container[b-i9or7bp581] {
    border: 1px solid #ddd;
    background-color: white;
    padding: 20px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 960px;
    width: 100%;
}

.min-width-300[b-i9or7bp581] {
    min-width: 300px;
}

 Tablas 
.cp-header-table[b-i9or7bp581],
.cp-section-table[b-i9or7bp581],
.cp-items-table[b-i9or7bp581] {
    width: 100%;
    border-collapse: collapse;
}

.cp-items-table[b-i9or7bp581] {
    border: 1px solid #ddd;
    margin-top: 20px;
}

    .cp-items-table th[b-i9or7bp581],
    .cp-items-table td[b-i9or7bp581] {
        border: 1px solid #ddd;
        padding: 5px;
        font-size: 10px;
    }

.cp-items-header[b-i9or7bp581] {
    background-color: #f3f3f3;
    font-weight: bold;
    font-size: 9px;
}

 Cajas y campos 
.cp-field-box[b-i9or7bp581] {
    width: 20px;
    height: 20px;
    border: 1px solid #666;
    text-align: center;
    vertical-align: middle;
}

.cp-boxes-table[b-i9or7bp581] {
    border-collapse: collapse;
}

.cp-field-value-box[b-i9or7bp581] {
    border: 1px solid #666;
    padding: 5px 8px;
    min-height: 22px;
    font-size: 11px;
}

Secciones
.cp-section-title[b-i9or7bp581] {
    background-color: #f3f3f3;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 1.1em; /* Aumenta ligeramente el tamaño */
    color: #000; /* Asegura un color oscuro */
    margin: 15px 0 10px;
    border-bottom: 1px solid #ddd;
}

 Logo y título 
.cp-dian-logo[b-i9or7bp581] {
    width: 120px;
    text-align: center;
}

    .cp-dian-logo img[b-i9or7bp581] {
        width: 100%;
        height: auto;
    }

.dian-slogan[b-i9or7bp581] {
    font-size: 8px;
    color: #0057a9;
}

.cp-title[b-i9or7bp581] {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.cp-form-number[b-i9or7bp581] {
    width: 100px;
    text-align: center;
}

.form-number-box[b-i9or7bp581] {
    border: 1px solid #0057a9;
    background-color: #0057a9;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 5px;
    border-radius: 2px;
}

 Otros elementos 
.cp-field-label[b-i9or7bp581] {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 10px;
}

.barcode-placeholder[b-i9or7bp581] {
    height: 50px;
    background-color: #f3f3f3;
    border: 1px solid #ddd;
    text-align: center;
    line-height: 50px;
    font-style: italic;
    color: #999;
}

.cp-item-label[b-i9or7bp581] {
    font-weight: bold;
    font-size: 9px;
    margin-bottom: 3px;
}

.cp-item-value[b-i9or7bp581] {
    font-size: 10px;
}

.cp-item-details-label[b-i9or7bp581] {
    font-weight: bold;
    font-size: 9px;
    margin-bottom: 3px;
}

.cp-item-details-value[b-i9or7bp581] {
    border: 1px solid #ddd;
    padding: 3px 5px;
    font-size: 10px;
}

.cp-item-details-code[b-i9or7bp581] {
    font-size: 9px;
    color: #666;
    margin-top: 2px;
}

.cp-item-separator[b-i9or7bp581] {
    border-bottom: 1px solid #999;
    margin: 10px 0;
}

 Sello DIAN 
.dian-stamp[b-i9or7bp581] {
    border: 2px solid #0057a9;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0 auto;
}

.dian-stamp-logo[b-i9or7bp581] {
    width: 60px;
    margin-bottom: 5px;
}

    .dian-stamp-logo img[b-i9or7bp581] {
        width: 100%;
        height: auto;
    }

.dian-stamp-date[b-i9or7bp581] {
    font-size: 8px;
    font-weight: bold;
    margin-bottom: 2px;
}

.dian-stamp-text[b-i9or7bp581] {
    font-size: 8px;
    margin-bottom: 2px;
}

.dian-stamp-firmado[b-i9or7bp581] {
    font-size: 10px;
    font-weight: bold;
    color: #0057a9;
}

 Footer 
.cp-pdf-footer[b-i9or7bp581] {
    margin-top: 30px;
    font-size: 9px;
    color: #666;
    text-align: center;
}

/* Badge de estado */
.cp-estado-badge[b-i9or7bp581] {
    position: absolute;
    top: -10px;
    left: -10px;
    transform: rotate(-25deg);
    z-index: 100;
}

.badge-cumplido[b-i9or7bp581] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 40px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    letter-spacing: 1px;
}

.badge-pendiente[b-i9or7bp581] {
    background: linear-gradient(135deg, #dc3545 0%, #f86734 100%);
    color: white;
    padding: 8px 40px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    letter-spacing: 1px;
}
.badge-anulado[b-i9or7bp581] {
    background: #f0f0f0; /* fondo gris claro */
    border: 2px solid #bdbdbd; /* línea gris */
    color: #dc3545; /* texto rojo */
    font-weight: bold; /* negrilla */
    padding: 8px 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 6px; /* opcional, para esquinas suaves */
}
/* Sección de demostraciones */
.demostraciones-section[b-i9or7bp581] {
    margin-top: 40px;
    border: 2px solid #0057a9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.demostraciones-header[b-i9or7bp581] {
    background: linear-gradient(to right, #0057a9, #003d7a);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
}

.demostraciones-summary[b-i9or7bp581] {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #dee2e6;
}

.summary-grid[b-i9or7bp581] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.summary-item[b-i9or7bp581] {
    text-align: center;
}

.summary-label[b-i9or7bp581] {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
}

.summary-value[b-i9or7bp581] {
    font-size: 20px;
    font-weight: bold;
    color: #0057a9;
}

    .summary-value.pendiente[b-i9or7bp581] {
        color: #dc3545;
    }

    .summary-value.cumplido[b-i9or7bp581] {
        color: #28a745;
    }

/* Tablas de demostración */
.ci-demostracion[b-i9or7bp581] {
    margin: 20px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
}

.ci-header[b-i9or7bp581] {
    background-color: #e9ecef;
    padding: 10px 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ci-badge[b-i9or7bp581] {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.badge-cumplido-ci[b-i9or7bp581] {
    background-color: #d4edda;
    color: #155724;
}

.badge-pendiente-ci[b-i9or7bp581] {
    background-color: #f8d7da;
    color: #721c24;
}

.demostracion-detalle[b-i9or7bp581] {
    padding: 15px;
}

.detalle-grid[b-i9or7bp581] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.detalle-item[b-i9or7bp581] {
    display: flex;
    flex-direction: column;
}

.detalle-label[b-i9or7bp581] {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 3px;
}

.detalle-value[b-i9or7bp581] {
    font-size: 14px;
    font-weight: 500;
}

.exportaciones-table[b-i9or7bp581] {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

    .exportaciones-table th[b-i9or7bp581] {
        background-color: #f8f9fa;
        padding: 8px;
        text-align: left;
        font-weight: bold;
        border-bottom: 2px solid #dee2e6;
    }

    .exportaciones-table td[b-i9or7bp581] {
        padding: 8px;
        border-bottom: 1px solid #dee2e6;
    }

    .exportaciones-table tr:hover[b-i9or7bp581] {
        background-color: #f8f9fa;
    }

/* Mejoras generales al diseño */
.cp-preview-container[b-i9or7bp581] {
    position: relative;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.cp-section-title[b-i9or7bp581] {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cp-field-value-box[b-i9or7bp581] {
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .cp-field-value-box:hover[b-i9or7bp581] {
        background-color: #f8f9fa;
        border-color: #0057a9;
    }


.detalle-grid[b-i9or7bp581] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}
/* Responsividad */
@media print {
    .cp-estado-badge[b-i9or7bp581] {
        display: none;
    }

    .mud-card[b-i9or7bp581],
    .mud-card-content[b-i9or7bp581] {
        padding: 0 !important;
    }
}
 Impresión 
@media print[b-i9or7bp581] {
    .mud-card {
        box-shadow: none !important;
        border: none !important;
    }

    .mud-card-content[b-i9or7bp581] {
        padding: 0 !important;
    }

    .d-flex.align-center.justify-space-between.mb-4[b-i9or7bp581],
    .d-flex.justify-end.mt-4[b-i9or7bp581] {
        display: none !important;
    }

    .cp-preview-container[b-i9or7bp581] {
        border: none;
        box-shadow: none;
        padding: 0;
    }


}
/* _content/AsiscomexCI/Components/Pages/Login.razor.rz.scp.css */
/* Estilos movidos a wwwroot/app.css para compatibilidad global con MudBlazor */
/* _content/AsiscomexCI/Components/Pages/MenuReportes.razor.rz.scp.css */
.menu-cards.segunda-fila[b-g1t2lkdu4r] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.menu-container[b-g1t2lkdu4r] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-title[b-g1t2lkdu4r] {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.menu-cards[b-g1t2lkdu4r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.menu-card[b-g1t2lkdu4r] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

    .menu-card:hover[b-g1t2lkdu4r] {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-color: #4CAF50;
    }

.card-icon[b-g1t2lkdu4r] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-icon img[b-g1t2lkdu4r] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.menu-card h2[b-g1t2lkdu4r] {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.menu-card p[b-g1t2lkdu4r] {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Estilos del Modal */
.modal-backdrop[b-g1t2lkdu4r] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-g1t2lkdu4r 0.3s ease;
}

.modal-content[b-g1t2lkdu4r] {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    animation: slideUp-b-g1t2lkdu4r 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-header[b-g1t2lkdu4r] {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h2[b-g1t2lkdu4r] {
        margin: 0;
        color: #333;
        font-size: 1.5rem;
    }

.modal-close[b-g1t2lkdu4r] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

    .modal-close:hover[b-g1t2lkdu4r] {
        background: #f5f5f5;
        color: #333;
    }

.modal-body[b-g1t2lkdu4r] {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    overflow-y: auto;
}

.option-card[b-g1t2lkdu4r] {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

    .option-card:hover[b-g1t2lkdu4r] {
        transform: translateY(-3px);
        border-color: #4CAF50;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.option-icon[b-g1t2lkdu4r] {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

    .option-icon img[b-g1t2lkdu4r] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.option-card h3[b-g1t2lkdu4r] {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.option-card p[b-g1t2lkdu4r] {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

@keyframes fadeIn-b-g1t2lkdu4r {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-g1t2lkdu4r {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .menu-cards[b-g1t2lkdu4r] {
        grid-template-columns: 1fr;
    }

    .modal-body[b-g1t2lkdu4r] {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .modal-content[b-g1t2lkdu4r] {
        width: 95%;
        margin: 1rem;
    }
}

/* _content/AsiscomexCI/Components/Pages/MenuSaldos.razor.rz.scp.css */
.menu-cards.segunda-fila[b-okzak28r2n] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.menu-container[b-okzak28r2n] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-title[b-okzak28r2n] {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.menu-cards[b-okzak28r2n] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.menu-card[b-okzak28r2n] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

    .menu-card:hover[b-okzak28r2n] {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-color: #4CAF50;
    }

.card-icon[b-okzak28r2n] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-icon img[b-okzak28r2n] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.menu-card h2[b-okzak28r2n] {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.menu-card p[b-okzak28r2n] {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Estilos del Modal */
.modal-backdrop[b-okzak28r2n] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-okzak28r2n 0.3s ease;
}

.modal-content[b-okzak28r2n] {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    animation: slideUp-b-okzak28r2n 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-header[b-okzak28r2n] {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h2[b-okzak28r2n] {
        margin: 0;
        color: #333;
        font-size: 1.5rem;
    }

.modal-close[b-okzak28r2n] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

    .modal-close:hover[b-okzak28r2n] {
        background: #f5f5f5;
        color: #333;
    }

.modal-body[b-okzak28r2n] {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    overflow-y: auto;
}

.option-card[b-okzak28r2n] {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

    .option-card:hover[b-okzak28r2n] {
        transform: translateY(-3px);
        border-color: #4CAF50;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.option-icon[b-okzak28r2n] {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

    .option-icon img[b-okzak28r2n] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.option-card h3[b-okzak28r2n] {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.option-card p[b-okzak28r2n] {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

@keyframes fadeIn-b-okzak28r2n {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-okzak28r2n {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .menu-cards[b-okzak28r2n] {
        grid-template-columns: 1fr;
    }

    .modal-body[b-okzak28r2n] {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .modal-content[b-okzak28r2n] {
        width: 95%;
        margin: 1rem;
    }
}
