/* /Components/ValidationTooltip.razor.rz.scp.css */
.validation-tooltip-container[b-dv1urrzaft] {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    z-index: 10; /* Suficiente para sobresalir del contenido, pero debajo de modales */
}

.validation-tooltip-trigger[b-dv1urrzaft] {
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s ease;
}

.validation-tooltip-trigger:hover[b-dv1urrzaft] {
    color: #0d6efd !important;
}

.validation-tooltip[b-dv1urrzaft] {
    position: absolute;
    z-index: 1040; /* Debajo de overlays de SweetAlert/Bootstrap (>=1050/1060) */
    min-width: 250px;
    max-width: 400px;
    width: 350px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
    font-size: 13px;
    line-height: 1.5;
}

.validation-tooltip-content[b-dv1urrzaft] {
    padding: 16px 20px;
}

.validation-rule-description[b-dv1urrzaft] {
    color: #495057;
}

.validation-rule-description strong[b-dv1urrzaft] {
    color: #212529;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.validation-tooltip-arrow[b-dv1urrzaft] {
    position: absolute;
    width: 0;
    height: 0;
    border: 6px solid transparent;
}

/* Posicionamiento del tooltip */
.validation-tooltip-top[b-dv1urrzaft] {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
}

.validation-tooltip-top .validation-tooltip-arrow[b-dv1urrzaft] {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top-color: #dee2e6;
    border-bottom: none;
}

.validation-tooltip-bottom[b-dv1urrzaft] {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
}

.validation-tooltip-bottom .validation-tooltip-arrow[b-dv1urrzaft] {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: #dee2e6;
    border-top: none;
}

.validation-tooltip-left[b-dv1urrzaft] {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 8px;
}

.validation-tooltip-left .validation-tooltip-arrow[b-dv1urrzaft] {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-left-color: #dee2e6;
    border-right: none;
}

.validation-tooltip-right[b-dv1urrzaft] {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
}

.validation-tooltip-right .validation-tooltip-arrow[b-dv1urrzaft] {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: #dee2e6;
    border-left: none;
}

/* Nueva posición: esquina superior derecha del trigger */
.validation-tooltip-top-right[b-dv1urrzaft] {
    bottom: 100%;
    left: 100%;
    transform: translate(-8px, 0); /* ligeramente a la izquierda para separarlo */
    margin-bottom: 8px;
}

.validation-tooltip-top-right .validation-tooltip-arrow[b-dv1urrzaft] {
    top: 100%;
    right: 12px; /* flecha alineada a la derecha */
    border-top-color: #dee2e6;
    border-bottom: none;
}

/* Animación de entrada */
.validation-tooltip[b-dv1urrzaft] {
    animation: tooltipFadeIn-b-dv1urrzaft 0.2s ease-out;
}

@keyframes tooltipFadeIn-b-dv1urrzaft {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .validation-tooltip[b-dv1urrzaft] {
        min-width: 200px;
        max-width: 300px;
        width: 280px;
        font-size: 12px;
    }
    
    .validation-tooltip-content[b-dv1urrzaft] {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .validation-tooltip[b-dv1urrzaft] {
        min-width: 180px;
        max-width: 250px;
        width: 220px;
        font-size: 11px;
    }
    
    .validation-tooltip-content[b-dv1urrzaft] {
        padding: 10px 14px;
    }
}
/* /Layout/Footer.razor.rz.scp.css */
.footer[b-y1htyvrlsz] {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-top: 1px solid white;
    padding: 8px 15px 5px;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    overflow: hidden;
    display: block !important;
}

.footer-content[b-y1htyvrlsz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.footer-section[b-y1htyvrlsz] {
    text-align: left;
}

.footer-section h4[b-y1htyvrlsz] {
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h5[b-y1htyvrlsz] {
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p[b-y1htyvrlsz] {
    margin: 1px 0;
    font-size: 0.65rem;
    line-height: 1.1;
    color: #e8f4fd;
}


.footer-bottom[b-y1htyvrlsz] {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2px;
    text-align: center;
    margin-top: 2px;
}

.footer-bottom p[b-y1htyvrlsz] {
    margin: 0;
    font-size: 0.6rem;
    color: #b8d4f0;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer[b-y1htyvrlsz] {
        padding: 5px 10px 3px;
        height: 35px;
        min-height: 35px;
        max-height: 35px;
    }
    
    .footer-content[b-y1htyvrlsz] {
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }
    
    .footer-section[b-y1htyvrlsz] {
        text-align: center;
    }
    
    .footer-section h4[b-y1htyvrlsz] {
        font-size: 0.7rem;
    }
    
    .footer-section h5[b-y1htyvrlsz] {
        font-size: 0.65rem;
    }
    
    .footer-section p[b-y1htyvrlsz] {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .footer[b-y1htyvrlsz] {
        padding: 4px 8px 2px;
        height: 30px;
        min-height: 30px;
        max-height: 30px;
    }
    
    .footer-section h4[b-y1htyvrlsz] {
        font-size: 0.65rem;
    }
    
    .footer-section h5[b-y1htyvrlsz] {
        font-size: 0.6rem;
    }
    
    .footer-section p[b-y1htyvrlsz] {
        font-size: 0.55rem;
    }
}
/* /Layout/Header.razor.rz.scp.css */
.header-container[b-evswt9gmbs] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #281E52; /* Cambia esto a tu color preferido */
}


.logo[b-evswt9gmbs] {
    height: 40px;
}

.title[b-evswt9gmbs] {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.btn.login[b-evswt9gmbs] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.btn.login:hover[b-evswt9gmbs] {
    background-color: #0056b3;
}


.user-actions[b-evswt9gmbs] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.documentation-btn[b-evswt9gmbs] {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.documentation-btn:hover[b-evswt9gmbs] {
    background: linear-gradient(135deg, #138496, #117a8b);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.documentation-btn i[b-evswt9gmbs] {
    font-size: 1em;
}

.documentation-btn .btn-text[b-evswt9gmbs] {
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .documentation-btn .btn-text[b-evswt9gmbs] {
        display: none;
    }
    
    .documentation-btn[b-evswt9gmbs] {
        padding: 8px 12px;
    }
}

.user-info[b-evswt9gmbs] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar[b-evswt9gmbs] {
    height: 30px;
    width: 30px;
    border-radius: 50%; /* Hace la imagen circular */
    object-fit: cover;
    border: 2px solid white;
    transition: transform 0.3s ease;
}

.user-profile-link[b-evswt9gmbs] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.user-profile-link:hover[b-evswt9gmbs] {
    background-color: rgba(255, 255, 255, 0.4);
}

.user-profile-link:hover .user-avatar[b-evswt9gmbs] {
    transform: scale(1.1);
}

.user-name[b-evswt9gmbs] {
    font-weight: 500;
    color: white;
}

.user-role[b-evswt9gmbs] {
    font-size: 0.85rem;
    color: #f1f3eb;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.layout-container[b-6v5ebjb4ko] {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Usar viewport height completo */
    width: 100%;
    overflow: hidden !important;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.header[b-6v5ebjb4ko] {
    width: 100%;
    max-width: 100%;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 200;
    flex-shrink: 0;
    height: 60px; /* Altura fija para el header */
}

.main-section[b-6v5ebjb4ko] {
    display: flex;
    flex: 1;
    position: relative;
    overflow: visible !important; /* Permitir que tooltips se muestren sobre el sidebar */
    width: 100%;
    box-sizing: border-box;
    height: calc(100vh - 60px - 40px); /* Restar header (60px) y footer (40px) */
    min-height: 0; /* Permitir que el flex se contraiga */
}

.content[b-6v5ebjb4ko] {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    overflow-x: visible !important; /* Permitir que tooltips sobresalgan del contenedor */
    margin-left: 250px; /* Ancho fijo del sidebar izquierdo */
    margin-right: 200px; /* Ancho fijo del sidebar derecho */
    width: calc(100% - 250px - 200px);
    max-width: calc(100% - 250px - 200px);
    box-sizing: border-box;
    padding-bottom: 20px; /* Padding inferior reducido */
    min-height: 0; /* Permitir que el flex se contraiga */
}

/* Clase para el contenido cuando el menú no está visible (para colaboradores) */
.content-full[b-6v5ebjb4ko] {
    flex: 1;
    padding: 20px 40px; /* Añadimos padding horizontal para mejorar la presentación */
    overflow-y: auto;
    overflow-x: hidden !important;
    margin-left: 0; /* Sin margen izquierdo */
    margin-right: 200px; /* Espacio para el sidebar derecho */
    width: calc(100% - 200px); /* Ancho completo menos el sidebar derecho */
    max-width: calc(100% - 200px); /* Ancho máximo considerando el sidebar */
    box-sizing: border-box;
    padding-bottom: 20px; /* Padding inferior reducido */
    min-height: 0; /* Permitir que el flex se contraiga */
}

/* Clases para cuando NO hay sidebar derecho (listas, etc.) */
.content-no-right-sidebar[b-6v5ebjb4ko] {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    overflow-x: visible !important;
    margin-left: 250px; /* Solo sidebar izquierdo */
    margin-right: 0;
    width: calc(100% - 250px);
    max-width: calc(100% - 250px);
    box-sizing: border-box;
    padding-bottom: 20px;
    min-height: 0;
}

.content-full-no-right-sidebar[b-6v5ebjb4ko] {
    flex: 1;
    padding: 20px 40px;
    overflow-y: auto;
    overflow-x: hidden !important;
    margin-left: 0; /* Sin margen izquierdo */
    margin-right: 0; /* Sin sidebar derecho */
    width: 100%; /* Ancho completo */
    max-width: 100%; /* Ancho máximo completo */
    box-sizing: border-box;
    padding-bottom: 20px;
    min-height: 0;
}

/* Pantalla de login */
.login-screen[b-6v5ebjb4ko] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #B9D9F1; /* Color de fondo que coincide con el azul claro de la imagen */
    overflow: hidden !important;
    padding: 0;
    margin: 0;
    flex: 1;
}

/* Contenedor de imagen a pantalla completa */
.image-container[b-6v5ebjb4ko] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
}

/* Imagen a pantalla completa */
.full-screen-image[b-6v5ebjb4ko] {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border: none;
    box-shadow: none;
}

/* Clase para contenido con scroll habilitado */
.scroll-enabled[b-6v5ebjb4ko] {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.footer[b-6v5ebjb4ko] {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
}

/* Responsive design para el layout con sidebar derecho */
@media (max-width: 1200px) {
    .content[b-6v5ebjb4ko] {
        margin-right: 180px;
        width: calc(100% - 250px - 180px);
        max-width: calc(100% - 250px - 180px);
    }
    
    .content-full[b-6v5ebjb4ko] {
        margin-right: 180px;
        width: calc(100% - 180px);
        max-width: calc(100% - 180px);
    }
    
    .content-no-right-sidebar[b-6v5ebjb4ko] {
        width: calc(100% - 250px);
        max-width: calc(100% - 250px);
    }
    
    .content-full-no-right-sidebar[b-6v5ebjb4ko] {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .content[b-6v5ebjb4ko] {
        margin-right: 160px;
        width: calc(100% - 250px - 160px);
        max-width: calc(100% - 250px - 160px);
    }
    
    .content-full[b-6v5ebjb4ko] {
        margin-right: 160px;
        width: calc(100% - 160px);
        max-width: calc(100% - 160px);
    }
    
    .content-no-right-sidebar[b-6v5ebjb4ko] {
        width: calc(100% - 250px);
        max-width: calc(100% - 250px);
    }
    
    .content-full-no-right-sidebar[b-6v5ebjb4ko] {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .content[b-6v5ebjb4ko] {
        margin-right: 0; /* Ocultar sidebar derecho en móviles */
        width: calc(100% - 250px);
        max-width: calc(100% - 250px);
    }
    
    .content-full[b-6v5ebjb4ko] {
        margin-right: 0; /* Ocultar sidebar derecho en móviles */
        width: 95%;
        max-width: 1400px;
    }
    
    .content-no-right-sidebar[b-6v5ebjb4ko] {
        width: calc(100% - 250px);
        max-width: calc(100% - 250px);
    }
    
    .content-full-no-right-sidebar[b-6v5ebjb4ko] {
        width: 100%;
        max-width: 100%;
    }
}

/* /Layout/NavMenu.razor.rz.scp.css */
.sidebar[b-jycib1kc17] {
    width: 250px;
    height: 100%;
    background-color: #f8f9fa;
    overflow: hidden !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    max-width: 250px;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
}

.top-row[b-jycib1kc17] {
    background-color: #0e9ad1;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.navbar-brand[b-jycib1kc17] {
    font-weight: bold;
    color: #fff !important;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.navbar-toggler[b-jycib1kc17] {
    background-color: transparent;
    border: none;
    color: #fff;
}

.navbar-toggler:focus[b-jycib1kc17] {
    outline: none;
    box-shadow: none;
}

.nav-link[b-jycib1kc17] {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin: 12px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link i[b-jycib1kc17] {
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
    color: #495057;
    transition: color 0.3s ease;
}

.nav-link span[b-jycib1kc17] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
}

.nav-link:hover[b-jycib1kc17] {
    background-color: rgba(14, 154, 209, 0.1);
    color: #000;
}

.nav-link:hover i[b-jycib1kc17] {
    color: #0e9ad1;
}

.nav-link.active[b-jycib1kc17] {
    font-weight: bold;
    background-color: rgba(14, 154, 209, 0.15);
    color: #000;
    border-left: 3px solid #0e9ad1;
}

.nav-link.active i[b-jycib1kc17] {
    color: #0e9ad1;
}

.nav-section[b-jycib1kc17] {
    margin-bottom: 20px;
    padding: 15px 10px;
    border-bottom: 1px solid #e9ecef;
}

.nav-item[b-jycib1kc17] {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 8px;
}

.nav-item:last-child[b-jycib1kc17] {
    margin-bottom: 0;
}

.section-title[b-jycib1kc17] {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin: 15px 0 10px 15px;
    font-weight: bold;
}

.nav-scrollable[b-jycib1kc17] {
    flex-grow: 1;
    padding: 15px 0;
    overflow: hidden !important;
    max-width: 100%;
}

/* Estilo para el mensaje de restricción de acceso */
.text-muted[b-jycib1kc17] {
    color: #6c757d;
    font-size: 0.9rem;
    padding: 10px;
    text-align: center;
}
/* /Layout/RightSidebar.razor.rz.scp.css */
.right-sidebar[b-a6bv5aja5m] {
    width: 200px;
    background-color: #f8f9fa;
    border-left: 1px solid #dee2e6;
    padding: 1rem;
    height: 100%;
    position: fixed;
    right: 0;
    top: 60px; /* Altura del header */
    bottom: 40px; /* Altura del footer */
    overflow-y: auto;
    z-index: 150;
    box-shadow: -2px 0 4px rgba(0,0,0,0.1);
}

.sidebar-header[b-a6bv5aja5m] {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-header h5[b-a6bv5aja5m] {
    margin: 0;
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
}

.sidebar-content[b-a6bv5aja5m] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-buttons[b-a6bv5aja5m] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-block[b-a6bv5aja5m] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
}

.status-info h6[b-a6bv5aja5m],
.user-info h6[b-a6bv5aja5m] {
    margin: 0 0 0.5rem 0;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge[b-a6bv5aja5m] {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.status-draft[b-a6bv5aja5m] {
    background-color: #e9ecef;
    color: #495057;
}

.status-editing[b-a6bv5aja5m] {
    background-color: #fff3cd;
    color: #856404;
}

.status-review[b-a6bv5aja5m] {
    background-color: #cce5ff;
    color: #004085;
}

.status-rejected[b-a6bv5aja5m] {
    background-color: #f8d7da;
    color: #721c24;
}

.status-archived[b-a6bv5aja5m] {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-published[b-a6bv5aja5m] {
    background-color: #d4edda;
    color: #155724;
}

.status-unknown[b-a6bv5aja5m] {
    background-color: #f8f9fa;
    color: #6c757d;
}

.user-info small[b-a6bv5aja5m] {
    line-height: 1.4;
}

/* Responsive design */
@media (max-width: 1200px) {
    .right-sidebar[b-a6bv5aja5m] {
        width: 180px;
    }
}

@media (max-width: 992px) {
    .right-sidebar[b-a6bv5aja5m] {
        width: 160px;
        padding: 0.75rem;
    }
    
    .btn-block[b-a6bv5aja5m] {
        padding: 0.4rem 0.6rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .right-sidebar[b-a6bv5aja5m] {
        display: none; /* Ocultar en móviles */
    }
}
/* /Pages/Auth/LoginModal.razor.rz.scp.css */
.modal-backdrop[b-lrfgffc7y7] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 1050 !important;
}


.modal-container[b-lrfgffc7y7] {
    background: white;
    border-radius: 12px; /* Bordes más redondeados */
    padding: 25px;
    width: 500px; /* Ampliar el ancho del modal */
    max-width: 90%; /* Asegurarse de que no exceda la pantalla en dispositivos pequeños */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Más sombra para mejor visibilidad */
    animation: fadeIn-b-lrfgffc7y7 0.3s ease-in-out; /* Suavizar la animación */
}

.modal-container h3[b-lrfgffc7y7] {
    margin-top: 0;
    font-size: 1.8rem; /* Ajustar el tamaño del título */
    color: #333; /* Cambiar color del título */
    text-align: center;
}


.form-group[b-lrfgffc7y7] {
    margin-bottom: 15px;
}

.form-group label[b-lrfgffc7y7] {
    font-size: 1rem; /* Tamaño del texto de las etiquetas */
    color: #555; /* Color más suave */
}

.modal-actions[b-lrfgffc7y7] {
    display: flex;
    justify-content: center; /* Centrar los botones */
    gap: 15px; /* Separación entre botones */
    margin-top: 15px; /* Agregar espacio superior */
}

.modal-links[b-lrfgffc7y7] {
    margin-top: 20px; /* Más espacio arriba del enlace */
    text-align: center;
    font-size: 0.9rem; /* Tamaño del texto más pequeño */
}

.modal-links a[b-lrfgffc7y7] {
    color: #007bff;
    font-weight: bold; /* Resaltar los enlaces */
    text-decoration: none;
}

.modal-links a:hover[b-lrfgffc7y7] {
    text-decoration: underline;
    color: #0056b3; /* Cambiar color al pasar el mouse */
}



.modal-links a:hover[b-lrfgffc7y7] {
    text-decoration: underline;
}

.modal-content[b-lrfgffc7y7] {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-header[b-lrfgffc7y7] {
    background-color: #f8f9fa; /* Fondo claro */
    border-bottom: 2px solid #dee2e6; /* Línea decorativa */
}

.modal-title[b-lrfgffc7y7] {
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-footer[b-lrfgffc7y7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body[b-lrfgffc7y7] {
    padding: 1.5rem; /* Espaciado interno */
}

.modal-footer .btn[b-lrfgffc7y7] {
    margin-left: 5px; /* Espaciado entre botones */
}

.modal-dialog[b-lrfgffc7y7] {
    max-width: 500px; /* Ajusta el ancho */
    width: 90%; /* Asegura buena visualización en pantallas pequeñas */
}

.text-muted[b-lrfgffc7y7] {
    font-size: 0.9rem; /* Tamaño de fuente para enlaces */
}



@keyframes fadeIn-b-lrfgffc7y7 {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* /Pages/Documentation.razor.rz.scp.css */
/* Estilos para la página principal de documentación */

.documentation-page[b-ne98s8omq7] {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.documentation-header[b-ne98s8omq7] {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px 0;
    margin-bottom: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.breadcrumb-nav[b-ne98s8omq7] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumb-section[b-ne98s8omq7] {
    display: flex;
    align-items: center;
}

.header-actions[b-ne98s8omq7] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn[b-ne98s8omq7] {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.close-btn:hover[b-ne98s8omq7] {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-1px);
}

.close-btn i[b-ne98s8omq7] {
    margin-right: 6px;
}

.breadcrumb-link[b-ne98s8omq7] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-link:hover[b-ne98s8omq7] {
    color: white;
}

.breadcrumb-separator[b-ne98s8omq7] {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current[b-ne98s8omq7] {
    color: white;
    font-weight: 500;
}

.documentation-title[b-ne98s8omq7] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.documentation-title h1[b-ne98s8omq7] {
    font-size: 1.8em;
    margin-bottom: 5px;
    font-weight: 300;
}

.documentation-title i[b-ne98s8omq7] {
    margin-right: 15px;
    color: #20c997;
}

.documentation-subtitle[b-ne98s8omq7] {
    font-size: 1em;
    opacity: 0.9;
    margin: 0 0 10px 0;
}


.download-btn[b-ne98s8omq7] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.download-btn:hover[b-ne98s8omq7] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
}

.download-btn i[b-ne98s8omq7] {
    margin-right: 8px;
}

.documentation-content[b-ne98s8omq7] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 0 20px;
}

.error-message[b-ne98s8omq7] {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 50px 0;
}

.error-message i[b-ne98s8omq7] {
    font-size: 3em;
    color: #856404;
    margin-bottom: 20px;
}

.error-message h3[b-ne98s8omq7] {
    color: #856404;
    margin-bottom: 15px;
}

.error-message p[b-ne98s8omq7] {
    color: #856404;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .documentation-title h1[b-ne98s8omq7] {
        font-size: 1.5em;
    }
    
    .documentation-subtitle[b-ne98s8omq7] {
        font-size: 0.9em;
    }
    
    .breadcrumb-nav[b-ne98s8omq7] {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .breadcrumb-section[b-ne98s8omq7] {
        justify-content: center;
    }
    
    .header-actions[b-ne98s8omq7] {
        justify-content: center;
    }
    
    .close-btn[b-ne98s8omq7] {
        padding: 10px 20px;
        font-size: 1em;
    }
    
    .documentation-content[b-ne98s8omq7] {
        padding: 100px 15px 0 15px;
    }
}
/* /Pages/Manuales/Administrador/DocAdministrador.razor.rz.scp.css */
/* Estilos específicos para la sección técnica del Manual del Administrador */

.admin-manual .architecture-section[b-p2nb8nc7d2] {
    margin: 25px 0;
}

.admin-manual .tech-grid[b-p2nb8nc7d2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.admin-manual .tech-card[b-p2nb8nc7d2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-manual .tech-card:hover[b-p2nb8nc7d2] {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.admin-manual .tech-card i[b-p2nb8nc7d2] {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #1e3c72;
}

.admin-manual .tech-card h5[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.admin-manual .tech-card p[b-p2nb8nc7d2] {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
}

.admin-manual .code-block[b-p2nb8nc7d2] {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
}

.admin-manual .code-block pre[b-p2nb8nc7d2] {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    line-height: 1.4;
    color: #495057;
}

.admin-manual .code-block code[b-p2nb8nc7d2] {
    background: none;
    padding: 0;
    font-family: inherit;
}

.admin-manual .model-diagram[b-p2nb8nc7d2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.admin-manual .model-card[b-p2nb8nc7d2] {
    background: white;
    border: 2px solid #1e3c72;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.admin-manual .model-card h5[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #1e3c72;
    padding-bottom: 8px;
}

.admin-manual .model-card ul[b-p2nb8nc7d2] {
    margin: 0;
    padding-left: 20px;
}

.admin-manual .model-card li[b-p2nb8nc7d2] {
    margin-bottom: 5px;
    color: #495057;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.admin-manual .service-grid[b-p2nb8nc7d2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.admin-manual .service-card[b-p2nb8nc7d2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-manual .service-card h5[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.admin-manual .service-card p[b-p2nb8nc7d2] {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
}

.admin-manual .infrastructure-grid[b-p2nb8nc7d2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.admin-manual .infra-card[b-p2nb8nc7d2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-manual .infra-card:hover[b-p2nb8nc7d2] {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.admin-manual .infra-card i[b-p2nb8nc7d2] {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #1e3c72;
}

.admin-manual .infra-card h5[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.admin-manual .infra-card p[b-p2nb8nc7d2] {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
}

.admin-manual .config-section[b-p2nb8nc7d2] {
    margin: 25px 0;
}

.admin-manual .config-section h5[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.admin-manual .flow-diagram[b-p2nb8nc7d2] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-manual .flow-step[b-p2nb8nc7d2] {
    background: white;
    border: 2px solid #1e3c72;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.admin-manual .flow-icon[b-p2nb8nc7d2] {
    margin-bottom: 10px;
}

.admin-manual .flow-icon i[b-p2nb8nc7d2] {
    font-size: 2em;
    color: #1e3c72;
}

.admin-manual .flow-step h5[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 8px;
    font-size: 1em;
}

.admin-manual .flow-step p[b-p2nb8nc7d2] {
    margin: 0;
    font-size: 0.9em;
    color: #6c757d;
}

.admin-manual .flow-arrow[b-p2nb8nc7d2] {
    font-size: 1.5em;
    color: #1e3c72;
    font-weight: bold;
}

.admin-manual .security-section[b-p2nb8nc7d2] {
    margin: 25px 0;
}

.admin-manual .security-section h4[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.admin-manual .security-section ul[b-p2nb8nc7d2] {
    margin-bottom: 20px;
    padding-left: 25px;
}

.admin-manual .security-section li[b-p2nb8nc7d2] {
    margin-bottom: 8px;
    line-height: 1.5;
}

.admin-manual .monitoring-section[b-p2nb8nc7d2] {
    margin: 25px 0;
}

.admin-manual .monitoring-section h4[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.admin-manual .backup-section[b-p2nb8nc7d2] {
    margin: 25px 0;
}

.admin-manual .backup-section h4[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.2em;
}

/* Estilos para tablas administrativas */
.admin-manual .table-responsive[b-p2nb8nc7d2] {
    overflow-x: auto;
    margin: 20px 0;
}

.admin-manual .admin-table[b-p2nb8nc7d2] {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-manual .admin-table thead[b-p2nb8nc7d2] {
    background: #1e3c72;
    color: white;
}

.admin-manual .admin-table th[b-p2nb8nc7d2],
.admin-manual .admin-table td[b-p2nb8nc7d2] {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.admin-manual .admin-table th[b-p2nb8nc7d2] {
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-manual .admin-table td[b-p2nb8nc7d2] {
    font-size: 0.9em;
    color: #495057;
}

.admin-manual .admin-table tbody tr:hover[b-p2nb8nc7d2] {
    background-color: #f8f9fa;
}

.admin-manual .admin-table code[b-p2nb8nc7d2] {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: #d63384;
}

/* Estilos para guía de expresiones regulares */
.admin-manual .regex-guide[b-p2nb8nc7d2] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.admin-manual .regex-guide h5[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.3em;
    border-bottom: 2px solid #1e3c72;
    padding-bottom: 10px;
}

.admin-manual .regex-section[b-p2nb8nc7d2] {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
}

.admin-manual .regex-section h6[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.admin-manual .regex-section p[b-p2nb8nc7d2] {
    margin-bottom: 10px;
    color: #495057;
}

.admin-manual .regex-section ul[b-p2nb8nc7d2] {
    margin: 0;
    padding-left: 20px;
}

.admin-manual .regex-section li[b-p2nb8nc7d2] {
    margin-bottom: 5px;
    color: #495057;
    line-height: 1.4;
}

.admin-manual .regex-section code[b-p2nb8nc7d2] {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #d63384;
    font-weight: 600;
}

.admin-manual .regex-examples[b-p2nb8nc7d2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.admin-manual .example[b-p2nb8nc7d2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.admin-manual .example h6[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 8px;
    font-size: 1em;
}

.admin-manual .example code[b-p2nb8nc7d2] {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: #495057;
    display: block;
    word-break: break-all;
    border: 1px solid #e9ecef;
}

/* Estilos para sección de proyecto server */
.admin-manual .server-scripts-grid[b-p2nb8nc7d2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.admin-manual .script-card[b-p2nb8nc7d2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-manual .script-card:hover[b-p2nb8nc7d2] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.admin-manual .script-header[b-p2nb8nc7d2] {
    background: #1e3c72;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-manual .script-header i[b-p2nb8nc7d2] {
    font-size: 1.2em;
}

.admin-manual .script-header h4[b-p2nb8nc7d2] {
    margin: 0;
    font-size: 1.1em;
}

.admin-manual .script-content[b-p2nb8nc7d2] {
    padding: 20px;
}

.admin-manual .script-content p[b-p2nb8nc7d2] {
    margin-bottom: 10px;
    color: #495057;
}

.admin-manual .script-content ul[b-p2nb8nc7d2] {
    margin: 10px 0;
    padding-left: 20px;
}

.admin-manual .script-content li[b-p2nb8nc7d2] {
    margin-bottom: 5px;
    color: #495057;
}

.admin-manual .services-grid[b-p2nb8nc7d2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.admin-manual .service-card[b-p2nb8nc7d2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.admin-manual .service-card:hover[b-p2nb8nc7d2] {
    transform: translateY(-2px);
}

.admin-manual .service-card h4[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-manual .service-card h4 i[b-p2nb8nc7d2] {
    font-size: 1.1em;
}

.admin-manual .service-card p[b-p2nb8nc7d2] {
    color: #495057;
    margin-bottom: 15px;
}

.admin-manual .service-card ul[b-p2nb8nc7d2] {
    margin: 0;
    padding-left: 20px;
}

.admin-manual .service-card li[b-p2nb8nc7d2] {
    margin-bottom: 8px;
    color: #495057;
}

.admin-manual .file-structure[b-p2nb8nc7d2] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.admin-manual .file-structure h4[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 15px;
}

/* Estilos para sección de control de versiones */
.admin-manual .version-control-info[b-p2nb8nc7d2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.admin-manual .version-card[b-p2nb8nc7d2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.admin-manual .version-card:hover[b-p2nb8nc7d2] {
    transform: translateY(-2px);
}

.admin-manual .version-card h4[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-manual .version-card h4 i[b-p2nb8nc7d2] {
    font-size: 1.2em;
}

.admin-manual .version-card p[b-p2nb8nc7d2] {
    color: #495057;
    margin-bottom: 15px;
}

.admin-manual .version-card ul[b-p2nb8nc7d2] {
    margin: 0;
    padding-left: 20px;
}

.admin-manual .version-card li[b-p2nb8nc7d2] {
    margin-bottom: 8px;
    color: #495057;
}

.admin-manual .update-commands[b-p2nb8nc7d2] {
    margin: 20px 0;
}

.admin-manual .update-commands h4[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 15px;
}

.admin-manual .benefits-grid[b-p2nb8nc7d2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.admin-manual .benefit-card[b-p2nb8nc7d2] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.admin-manual .benefit-card:hover[b-p2nb8nc7d2] {
    transform: translateY(-2px);
}

.admin-manual .benefit-card i[b-p2nb8nc7d2] {
    font-size: 2em;
    color: #1e3c72;
    margin-bottom: 15px;
}

.admin-manual .benefit-card h4[b-p2nb8nc7d2] {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.admin-manual .benefit-card p[b-p2nb8nc7d2] {
    color: #495057;
    font-size: 0.9em;
    margin: 0;
}

/* Responsive para sección técnica */
@media (max-width: 768px) {
    .admin-manual .tech-grid[b-p2nb8nc7d2] {
        grid-template-columns: 1fr;
    }
    
    .admin-manual .model-diagram[b-p2nb8nc7d2] {
        grid-template-columns: 1fr;
    }
    
    .admin-manual .service-grid[b-p2nb8nc7d2] {
        grid-template-columns: 1fr;
    }
    
    .admin-manual .infrastructure-grid[b-p2nb8nc7d2] {
        grid-template-columns: 1fr;
    }
    
    .admin-manual .flow-diagram[b-p2nb8nc7d2] {
        flex-direction: column;
    }
    
    .admin-manual .flow-arrow[b-p2nb8nc7d2] {
        transform: rotate(90deg);
    }
    
    .admin-manual .regex-examples[b-p2nb8nc7d2] {
        grid-template-columns: 1fr;
    }
    
    .admin-manual .admin-table[b-p2nb8nc7d2] {
        font-size: 0.8em;
    }
    
    .admin-manual .admin-table th[b-p2nb8nc7d2],
    .admin-manual .admin-table td[b-p2nb8nc7d2] {
        padding: 8px 10px;
    }
    
    .admin-manual .server-scripts-grid[b-p2nb8nc7d2] {
        grid-template-columns: 1fr;
    }
    
    .admin-manual .services-grid[b-p2nb8nc7d2] {
        grid-template-columns: 1fr;
    }
    
    .admin-manual .version-control-info[b-p2nb8nc7d2] {
        grid-template-columns: 1fr;
    }
    
    .admin-manual .benefits-grid[b-p2nb8nc7d2] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /Pages/Manuales/Colaborador/DocColaborador.razor.rz.scp.css */
/* Estilos específicos para el Manual del Colaborador */

.colaborador-manual .manual-cover[b-szyq594yod] {
    background: white;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.colaborador-manual .cover-content[b-szyq594yod] {
    flex: 1;
    padding: 60px 40px 40px 40px;
    position: relative;
    z-index: 2;
}

.colaborador-manual .cover-title[b-szyq594yod] {
    text-align: center;
    margin-bottom: 60px;
}

.colaborador-manual .cover-title .main-title[b-szyq594yod] {
    font-size: 3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.colaborador-manual .cover-title .subtitle[b-szyq594yod] {
    font-size: 2.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.colaborador-manual .cover-title .project-name[b-szyq594yod] {
    font-size: 1.8em;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 40px;
}

.colaborador-manual .cover-info[b-szyq594yod] {
    text-align: left;
    margin-bottom: 40px;
}

.colaborador-manual .cover-info .prepared-for[b-szyq594yod] {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.colaborador-manual .cover-info .institution[b-szyq594yod] {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

.colaborador-manual .cover-info .date[b-szyq594yod] {
    font-size: 1.1em;
    color: #666;
}

.colaborador-manual .cover-footer[b-szyq594yod] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #20c997 100%);
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.colaborador-manual .cover-footer-content[b-szyq594yod] {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: white;
    z-index: 2;
    max-width: 400px;
}

.colaborador-manual .cover-footer .logo[b-szyq594yod] {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.colaborador-manual .cover-footer .logo[b-szyq594yod]::before {
    content: "🌐";
    margin-right: 10px;
    font-size: 1.2em;
}

.colaborador-manual .cover-footer .contact-info[b-szyq594yod] {
    font-size: 0.9em;
    line-height: 1.4;
    opacity: 0.9;
}

.colaborador-manual .cover-footer .contact-info div[b-szyq594yod] {
    margin-bottom: 3px;
}

.colaborador-manual .cover-anchor[b-szyq594yod] {
    position: absolute;
    top: 20px;
    left: 40px;
    color: #1e3c72;
    font-size: 1.5em;
    z-index: 2;
}

.colaborador-manual .cover-map-bg[b-szyq594yod] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 60%;
    background: 
        linear-gradient(45deg, #e8f4f8 0%, #d1e7dd 30%, #f8f9fa 70%, #e3f2fd 100%);
    opacity: 0.4;
    z-index: 0;
    border-radius: 0 0 0 20px;
}

.colaborador-manual .cover-map-bg[b-szyq594yod]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, #adb5bd 2px, transparent 2px),
        linear-gradient(180deg, #adb5bd 2px, transparent 2px),
        linear-gradient(90deg, #dee2e6 1px, transparent 1px),
        linear-gradient(180deg, #dee2e6 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
    opacity: 0.6;
}

.colaborador-manual .cover-map-bg[b-szyq594yod]::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 30%;
    background: #28a745;
    border-radius: 8px;
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.2);
}

/* Tabla de contenidos */
.colaborador-manual .toc-section[b-szyq594yod] {
    background-color: #f8f9fa;
    padding: 30px;
    border-bottom: 1px solid #dee2e6;
}

.colaborador-manual .toc-section h2[b-szyq594yod] {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.colaborador-manual .toc-list[b-szyq594yod] {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 30px;
}

.colaborador-manual .toc-list li[b-szyq594yod] {
    margin-bottom: 10px;
    break-inside: avoid;
}

.colaborador-manual .toc-list a[b-szyq594yod] {
    color: #1e3c72;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.2s;
}

.colaborador-manual .toc-list a:hover[b-szyq594yod] {
    background-color: #e3f2fd;
    color: #2a5298;
    transform: translateX(5px);
}

/* Contenido del manual */
.colaborador-manual .manual-content[b-szyq594yod] {
    padding: 40px;
}

.colaborador-manual .manual-section[b-szyq594yod] {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.colaborador-manual .manual-section:last-child[b-szyq594yod] {
    border-bottom: none;
}

.colaborador-manual .manual-section h2[b-szyq594yod] {
    color: #1e3c72;
    font-size: 2em;
    margin-bottom: 25px;
    border-bottom: 3px solid #20c997;
    padding-bottom: 10px;
}

.colaborador-manual .manual-section h3[b-szyq594yod] {
    color: #2a5298;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

.colaborador-manual .manual-section h4[b-szyq594yod] {
    color: #495057;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
}

.colaborador-manual .manual-section p[b-szyq594yod] {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #495057;
}

.colaborador-manual .manual-section ul[b-szyq594yod], .colaborador-manual .manual-section ol[b-szyq594yod] {
    margin-bottom: 20px;
    padding-left: 25px;
}

.colaborador-manual .manual-section li[b-szyq594yod] {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Grid de características */
.colaborador-manual .feature-grid[b-szyq594yod] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.colaborador-manual .feature-card[b-szyq594yod] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.colaborador-manual .feature-card:hover[b-szyq594yod] {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.colaborador-manual .feature-card i[b-szyq594yod] {
    font-size: 2.5em;
    color: #1e3c72;
    margin-bottom: 15px;
}

.colaborador-manual .feature-card h4[b-szyq594yod] {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.colaborador-manual .feature-card p[b-szyq594yod] {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
}

/* Grid de estados */
.colaborador-manual .status-grid[b-szyq594yod] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.colaborador-manual .status-item[b-szyq594yod] {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border-left: 4px solid;
}

.colaborador-manual .status-item.draft[b-szyq594yod] {
    border-left-color: #ffc107;
    background-color: #fff3cd;
}

.colaborador-manual .status-item.review[b-szyq594yod] {
    border-left-color: #17a2b8;
    background-color: #d1ecf1;
}

.colaborador-manual .status-item.published[b-szyq594yod] {
    border-left-color: #28a745;
    background-color: #d4edda;
}

.colaborador-manual .status-item i[b-szyq594yod] {
    font-size: 2em;
    margin-bottom: 10px;
}

.colaborador-manual .status-item.draft i[b-szyq594yod] {
    color: #856404;
}

.colaborador-manual .status-item.review i[b-szyq594yod] {
    color: #0c5460;
}

.colaborador-manual .status-item.published i[b-szyq594yod] {
    color: #155724;
}

/* Pasos del proceso */
.colaborador-manual .step-container[b-szyq594yod] {
    margin: 25px 0;
}

.colaborador-manual .step[b-szyq594yod] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
}

.colaborador-manual .step-number[b-szyq594yod] {
    background: #1e3c72;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.colaborador-manual .step-content h4[b-szyq594yod] {
    color: #1e3c72;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.colaborador-manual .step-content p[b-szyq594yod] {
    margin: 0 0 15px 0;
    color: #495057;
}

/* Imágenes del manual */
.colaborador-manual .image-placeholder[b-szyq594yod] {
    margin: 20px 0;
    text-align: center;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 20px;
}

.colaborador-manual .manual-image[b-szyq594yod] {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.colaborador-manual .manual-image:hover[b-szyq594yod] {
    transform: scale(1.02);
}

.colaborador-manual .image-gallery[b-szyq594yod] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.colaborador-manual .image-gallery .manual-image[b-szyq594yod] {
    width: 100%;
    height: auto;
}

/* Diagrama de flujo */
.colaborador-manual .workflow-diagram[b-szyq594yod] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.colaborador-manual .workflow-step[b-szyq594yod] {
    background: white;
    border: 2px solid #1e3c72;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.colaborador-manual .workflow-icon[b-szyq594yod] {
    font-size: 2em;
    margin-bottom: 10px;
}

.colaborador-manual .workflow-step h4[b-szyq594yod] {
    color: #1e3c72;
    margin-bottom: 8px;
    font-size: 1em;
}

.colaborador-manual .workflow-step p[b-szyq594yod] {
    margin: 0;
    font-size: 0.9em;
    color: #6c757d;
}

.colaborador-manual .workflow-arrow[b-szyq594yod] {
    font-size: 1.5em;
    color: #1e3c72;
    font-weight: bold;
}

/* Solución de problemas */
.colaborador-manual .troubleshooting-grid[b-szyq594yod] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.colaborador-manual .troubleshooting-item[b-szyq594yod] {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
}

.colaborador-manual .troubleshooting-item h4[b-szyq594yod] {
    color: #856404;
    margin-bottom: 10px;
}

.colaborador-manual .troubleshooting-item p[b-szyq594yod] {
    margin: 0;
    color: #856404;
}

/* Responsive */
@media (max-width: 768px) {
    .colaborador-manual .cover-content[b-szyq594yod] {
        padding: 40px 20px 20px 20px;
    }
    
    .colaborador-manual .cover-title .main-title[b-szyq594yod] {
        font-size: 2em;
    }
    
    .colaborador-manual .cover-title .subtitle[b-szyq594yod] {
        font-size: 1.5em;
    }
    
    .colaborador-manual .cover-title .project-name[b-szyq594yod] {
        font-size: 1.3em;
    }
    
    .colaborador-manual .cover-footer-content[b-szyq594yod] {
        left: 20px;
        bottom: 15px;
    }
    
    .colaborador-manual .cover-anchor[b-szyq594yod] {
        left: 20px;
    }
    
    .colaborador-manual .toc-list[b-szyq594yod] {
        columns: 1;
    }
    
    .colaborador-manual .feature-grid[b-szyq594yod] {
        grid-template-columns: 1fr;
    }
    
    .colaborador-manual .status-grid[b-szyq594yod] {
        grid-template-columns: 1fr;
    }
    
    .colaborador-manual .workflow-diagram[b-szyq594yod] {
        flex-direction: column;
    }
    
    .colaborador-manual .workflow-arrow[b-szyq594yod] {
        transform: rotate(90deg);
    }
    
    .colaborador-manual .troubleshooting-grid[b-szyq594yod] {
        grid-template-columns: 1fr;
    }
    
    .colaborador-manual .step[b-szyq594yod] {
        flex-direction: column;
        text-align: center;
    }
    
    .colaborador-manual .step-number[b-szyq594yod] {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .colaborador-manual .image-gallery[b-szyq594yod] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Manuales/Supervisor/DocSupervisor.razor.rz.scp.css */
/* Estilos específicos para el Manual del Supervisor */

.supervisor-manual .manual-cover[b-cjljsv5ts3] {
    background: white;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.supervisor-manual .cover-content[b-cjljsv5ts3] {
    flex: 1;
    padding: 60px 40px 40px 40px;
    position: relative;
    z-index: 2;
}

.supervisor-manual .cover-title[b-cjljsv5ts3] {
    text-align: center;
    margin-bottom: 60px;
}

.supervisor-manual .cover-title .main-title[b-cjljsv5ts3] {
    font-size: 3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.supervisor-manual .cover-title .subtitle[b-cjljsv5ts3] {
    font-size: 2.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.supervisor-manual .cover-title .project-name[b-cjljsv5ts3] {
    font-size: 1.8em;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 40px;
}

.supervisor-manual .cover-info[b-cjljsv5ts3] {
    text-align: left;
    margin-bottom: 40px;
}

.supervisor-manual .cover-info .prepared-for[b-cjljsv5ts3] {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.supervisor-manual .cover-info .institution[b-cjljsv5ts3] {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

.supervisor-manual .cover-info .date[b-cjljsv5ts3] {
    font-size: 1.1em;
    color: #666;
}

.supervisor-manual .cover-footer[b-cjljsv5ts3] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.supervisor-manual .cover-footer-content[b-cjljsv5ts3] {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: white;
    z-index: 2;
    max-width: 400px;
}

.supervisor-manual .cover-footer .logo[b-cjljsv5ts3] {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.supervisor-manual .cover-footer .logo[b-cjljsv5ts3]::before {
    content: "🌐";
    margin-right: 10px;
    font-size: 1.2em;
}

.supervisor-manual .cover-footer .contact-info[b-cjljsv5ts3] {
    font-size: 0.9em;
    line-height: 1.4;
    opacity: 0.9;
}

.supervisor-manual .cover-footer .contact-info div[b-cjljsv5ts3] {
    margin-bottom: 3px;
}

.supervisor-manual .cover-anchor[b-cjljsv5ts3] {
    position: absolute;
    top: 20px;
    left: 40px;
    color: #28a745;
    font-size: 1.5em;
    z-index: 2;
}

.supervisor-manual .cover-map-bg[b-cjljsv5ts3] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 60%;
    background: 
        linear-gradient(45deg, #d4edda 0%, #c3e6cb 30%, #f8f9fa 70%, #e8f5e8 100%);
    opacity: 0.4;
    z-index: 0;
    border-radius: 0 0 0 20px;
}

.supervisor-manual .cover-map-bg[b-cjljsv5ts3]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, #adb5bd 2px, transparent 2px),
        linear-gradient(180deg, #adb5bd 2px, transparent 2px),
        linear-gradient(90deg, #dee2e6 1px, transparent 1px),
        linear-gradient(180deg, #dee2e6 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
    opacity: 0.6;
}

.supervisor-manual .cover-map-bg[b-cjljsv5ts3]::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 30%;
    background: #28a745;
    border-radius: 8px;
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.2);
}

/* Tabla de contenidos */
.supervisor-manual .toc-section[b-cjljsv5ts3] {
    background-color: #f8f9fa;
    padding: 30px;
    border-bottom: 1px solid #dee2e6;
}

.supervisor-manual .toc-section h2[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.supervisor-manual .toc-list[b-cjljsv5ts3] {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 30px;
}

.supervisor-manual .toc-list li[b-cjljsv5ts3] {
    margin-bottom: 10px;
    break-inside: avoid;
}

.supervisor-manual .toc-list a[b-cjljsv5ts3] {
    color: #28a745;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.2s;
}

.supervisor-manual .toc-list a:hover[b-cjljsv5ts3] {
    background-color: #d4edda;
    color: #155724;
    transform: translateX(5px);
}

/* Contenido del manual */
.supervisor-manual .manual-content[b-cjljsv5ts3] {
    padding: 40px;
}

.supervisor-manual .manual-section[b-cjljsv5ts3] {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.supervisor-manual .manual-section:last-child[b-cjljsv5ts3] {
    border-bottom: none;
}

.supervisor-manual .manual-section h2[b-cjljsv5ts3] {
    color: #28a745;
    font-size: 2em;
    margin-bottom: 25px;
    border-bottom: 3px solid #20c997;
    padding-bottom: 10px;
}

.supervisor-manual .manual-section h3[b-cjljsv5ts3] {
    color: #20c997;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

.supervisor-manual .manual-section h4[b-cjljsv5ts3] {
    color: #495057;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
}

.supervisor-manual .manual-section p[b-cjljsv5ts3] {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #495057;
}

.supervisor-manual .manual-section ul[b-cjljsv5ts3], .supervisor-manual .manual-section ol[b-cjljsv5ts3] {
    margin-bottom: 20px;
    padding-left: 25px;
}

.supervisor-manual .manual-section li[b-cjljsv5ts3] {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Grid de características */
.supervisor-manual .feature-grid[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .feature-card[b-cjljsv5ts3] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.supervisor-manual .feature-card:hover[b-cjljsv5ts3] {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.supervisor-manual .feature-card i[b-cjljsv5ts3] {
    font-size: 2.5em;
    color: #28a745;
    margin-bottom: 15px;
}

.supervisor-manual .feature-card h4[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.supervisor-manual .feature-card p[b-cjljsv5ts3] {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
}

/* Pasos del proceso */
.supervisor-manual .step-container[b-cjljsv5ts3] {
    margin: 25px 0;
}

.supervisor-manual .step[b-cjljsv5ts3] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.supervisor-manual .step-number[b-cjljsv5ts3] {
    background: #28a745;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.supervisor-manual .step-content h4[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.supervisor-manual .step-content p[b-cjljsv5ts3] {
    margin: 0;
    color: #495057;
}

/* Procesos de aprobación y rechazo */
.supervisor-manual .approval-process[b-cjljsv5ts3],
.supervisor-manual .rejection-process[b-cjljsv5ts3] {
    margin: 25px 0;
}

.supervisor-manual .process-step[b-cjljsv5ts3] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #28a745;
}

.supervisor-manual .rejection-process .process-step[b-cjljsv5ts3] {
    border-left-color: #dc3545;
}

.supervisor-manual .process-step h4[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 15px;
}

.supervisor-manual .rejection-process .process-step h4[b-cjljsv5ts3] {
    color: #dc3545;
}

.supervisor-manual .process-step ol[b-cjljsv5ts3] {
    margin-bottom: 15px;
}

.supervisor-manual .process-step p[b-cjljsv5ts3] {
    margin: 0;
    font-weight: bold;
    color: #495057;
}

/* Grid de estadísticas */
.supervisor-manual .stats-grid[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .stat-item[b-cjljsv5ts3] {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.supervisor-manual .stat-item i[b-cjljsv5ts3] {
    font-size: 2em;
    color: #28a745;
    margin-bottom: 10px;
}

.supervisor-manual .stat-item h4[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 8px;
    font-size: 1em;
}

.supervisor-manual .stat-item p[b-cjljsv5ts3] {
    margin: 0;
    font-size: 0.9em;
    color: #6c757d;
}

/* Grid de métricas */
.supervisor-manual .metrics-grid[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .metric-card[b-cjljsv5ts3] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.supervisor-manual .metric-card h4[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.supervisor-manual .metric-card ul[b-cjljsv5ts3] {
    margin: 0;
    padding-left: 20px;
}

.supervisor-manual .metric-card li[b-cjljsv5ts3] {
    margin-bottom: 5px;
    font-size: 0.9em;
}

/* Grid de etiquetas */
.supervisor-manual .tags-grid[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.supervisor-manual .tag-item[b-cjljsv5ts3] {
    background: #e8f5e8;
    border: 1px solid #28a745;
    border-radius: 20px;
    padding: 10px 15px;
    text-align: center;
    font-size: 0.9em;
    color: #155724;
    font-weight: 500;
}

/* Gestión de archivos */
.supervisor-manual .file-management[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .file-action[b-cjljsv5ts3] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid;
}

.supervisor-manual .file-action.approve[b-cjljsv5ts3] {
    border-left-color: #28a745;
}

.supervisor-manual .file-action.reject[b-cjljsv5ts3] {
    border-left-color: #dc3545;
}

.supervisor-manual .file-action h4[b-cjljsv5ts3] {
    margin-bottom: 10px;
}

.supervisor-manual .file-action.approve h4[b-cjljsv5ts3] {
    color: #28a745;
}

.supervisor-manual .file-action.reject h4[b-cjljsv5ts3] {
    color: #dc3545;
}

.supervisor-manual .file-action p[b-cjljsv5ts3] {
    margin: 0;
    color: #495057;
}

/* Flujo de trabajo diario */
.supervisor-manual .workflow-daily[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .workflow-time[b-cjljsv5ts3] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.supervisor-manual .workflow-time h4[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.supervisor-manual .workflow-time ul[b-cjljsv5ts3] {
    margin: 0;
    padding-left: 20px;
}

.supervisor-manual .workflow-time li[b-cjljsv5ts3] {
    margin-bottom: 5px;
    font-size: 0.9em;
}

/* Flujo de trabajo semanal */
.supervisor-manual .workflow-weekly[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .week-day[b-cjljsv5ts3] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #28a745;
}

.supervisor-manual .week-day h4[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.supervisor-manual .week-day p[b-cjljsv5ts3] {
    margin: 0;
    color: #495057;
    font-size: 0.9em;
}

/* Criterios de revisión */
.supervisor-manual .criteria-grid[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .criteria-item[b-cjljsv5ts3] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.supervisor-manual .criteria-item h4[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.supervisor-manual .criteria-item ul[b-cjljsv5ts3] {
    margin: 0;
    padding-left: 20px;
}

.supervisor-manual .criteria-item li[b-cjljsv5ts3] {
    margin-bottom: 5px;
    font-size: 0.9em;
}

/* Motivos de rechazo */
.supervisor-manual .rejection-reasons[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .reason-category[b-cjljsv5ts3] {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 20px;
}

.supervisor-manual .reason-category h4[b-cjljsv5ts3] {
    color: #dc3545;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.supervisor-manual .reason-category ul[b-cjljsv5ts3] {
    margin: 0;
    padding-left: 20px;
}

.supervisor-manual .reason-category li[b-cjljsv5ts3] {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #495057;
}

/* Comunicación */
.supervisor-manual .communication-types[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .comm-type[b-cjljsv5ts3] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid;
}

.supervisor-manual .comm-type.approval[b-cjljsv5ts3] {
    border-left-color: #28a745;
}

.supervisor-manual .comm-type.rejection[b-cjljsv5ts3] {
    border-left-color: #dc3545;
}

.supervisor-manual .comm-type h4[b-cjljsv5ts3] {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.supervisor-manual .comm-type.approval h4[b-cjljsv5ts3] {
    color: #28a745;
}

.supervisor-manual .comm-type.rejection h4[b-cjljsv5ts3] {
    color: #dc3545;
}

.supervisor-manual .comm-type ul[b-cjljsv5ts3] {
    margin: 0;
    padding-left: 20px;
}

.supervisor-manual .comm-type li[b-cjljsv5ts3] {
    margin-bottom: 5px;
    font-size: 0.9em;
}

/* Ejemplos de comentarios */
.supervisor-manual .comment-examples[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .example[b-cjljsv5ts3] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.supervisor-manual .example.approval[b-cjljsv5ts3] {
    border-left: 4px solid #28a745;
}

.supervisor-manual .example.rejection[b-cjljsv5ts3] {
    border-left: 4px solid #dc3545;
}

.supervisor-manual .example h4[b-cjljsv5ts3] {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.supervisor-manual .example.approval h4[b-cjljsv5ts3] {
    color: #28a745;
}

.supervisor-manual .example.rejection h4[b-cjljsv5ts3] {
    color: #dc3545;
}

.supervisor-manual .example blockquote[b-cjljsv5ts3] {
    margin: 0;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #dee2e6;
    border-radius: 4px;
    font-style: italic;
    color: #495057;
}

/* Solución de problemas */
.supervisor-manual .troubleshooting-grid[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .troubleshooting-item[b-cjljsv5ts3] {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
}

.supervisor-manual .troubleshooting-item h4[b-cjljsv5ts3] {
    color: #856404;
    margin-bottom: 10px;
}

.supervisor-manual .troubleshooting-item p[b-cjljsv5ts3] {
    margin: 0;
    color: #856404;
}

/* Checklist */
.supervisor-manual .checklist-container[b-cjljsv5ts3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.supervisor-manual .checklist-item[b-cjljsv5ts3] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.supervisor-manual .checklist-item h4[b-cjljsv5ts3] {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.supervisor-manual .checklist-item ul[b-cjljsv5ts3] {
    margin: 0;
    padding-left: 20px;
}

.supervisor-manual .checklist-item li[b-cjljsv5ts3] {
    margin-bottom: 5px;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .supervisor-manual .cover-content[b-cjljsv5ts3] {
        padding: 40px 20px 20px 20px;
    }
    
    .supervisor-manual .cover-title .main-title[b-cjljsv5ts3] {
        font-size: 2em;
    }
    
    .supervisor-manual .cover-title .subtitle[b-cjljsv5ts3] {
        font-size: 1.5em;
    }
    
    .supervisor-manual .cover-title .project-name[b-cjljsv5ts3] {
        font-size: 1.3em;
    }
    
    .supervisor-manual .cover-footer-content[b-cjljsv5ts3] {
        left: 20px;
        bottom: 15px;
    }
    
    .supervisor-manual .cover-anchor[b-cjljsv5ts3] {
        left: 20px;
    }
    
    .supervisor-manual .toc-list[b-cjljsv5ts3] {
        columns: 1;
    }
    
    .supervisor-manual .feature-grid[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .stats-grid[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .metrics-grid[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .tags-grid[b-cjljsv5ts3] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .supervisor-manual .file-management[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .workflow-daily[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .workflow-weekly[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .criteria-grid[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .rejection-reasons[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .communication-types[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .comment-examples[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .troubleshooting-grid[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .checklist-container[b-cjljsv5ts3] {
        grid-template-columns: 1fr;
    }
    
    .supervisor-manual .step[b-cjljsv5ts3] {
        flex-direction: column;
        text-align: center;
    }
    
    .supervisor-manual .step-number[b-cjljsv5ts3] {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
/* /Pages/Manuales/Tecnico/DocTecnico.razor.rz.scp.css */
/* Estilos específicos para el Manual Técnico */

.tecnico-manual .manual-cover[b-fykyg3pj7d] {
    background: white;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.tecnico-manual .cover-content[b-fykyg3pj7d] {
    flex: 1;
    padding: 60px 40px 40px 40px;
    position: relative;
    z-index: 2;
}

.tecnico-manual .cover-title[b-fykyg3pj7d] {
    text-align: center;
    margin-bottom: 60px;
}

.tecnico-manual .cover-title .main-title[b-fykyg3pj7d] {
    font-size: 3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.tecnico-manual .cover-title .subtitle[b-fykyg3pj7d] {
    font-size: 2.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.tecnico-manual .cover-title .project-name[b-fykyg3pj7d] {
    font-size: 1.8em;
    font-weight: bold;
    color: #6f42c1;
    margin-bottom: 40px;
}

.tecnico-manual .cover-info[b-fykyg3pj7d] {
    text-align: left;
    margin-bottom: 40px;
}

.tecnico-manual .cover-info .prepared-for[b-fykyg3pj7d] {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.tecnico-manual .cover-info .institution[b-fykyg3pj7d] {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

.tecnico-manual .cover-info .date[b-fykyg3pj7d] {
    font-size: 1.1em;
    color: #666;
}

.tecnico-manual .cover-footer[b-fykyg3pj7d] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 50%, #fd7e14 100%);
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.tecnico-manual .cover-footer-content[b-fykyg3pj7d] {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: white;
    z-index: 2;
    max-width: 400px;
}

.tecnico-manual .cover-footer .logo[b-fykyg3pj7d] {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tecnico-manual .cover-footer .logo[b-fykyg3pj7d]::before {
    content: "🌐";
    margin-right: 10px;
    font-size: 1.2em;
}

.tecnico-manual .cover-footer .contact-info[b-fykyg3pj7d] {
    font-size: 0.9em;
    line-height: 1.4;
    opacity: 0.9;
}

.tecnico-manual .cover-footer .contact-info div[b-fykyg3pj7d] {
    margin-bottom: 3px;
}

.tecnico-manual .cover-anchor[b-fykyg3pj7d] {
    position: absolute;
    top: 20px;
    left: 40px;
    color: #6f42c1;
    font-size: 1.5em;
    z-index: 2;
}

.tecnico-manual .cover-map-bg[b-fykyg3pj7d] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 60%;
    background: 
        linear-gradient(45deg, #f3e5f5 0%, #e1bee7 30%, #f8f9fa 70%, #fce4ec 100%);
    opacity: 0.4;
    z-index: 0;
    border-radius: 0 0 0 20px;
}

.tecnico-manual .cover-map-bg[b-fykyg3pj7d]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, #adb5bd 2px, transparent 2px),
        linear-gradient(180deg, #adb5bd 2px, transparent 2px),
        linear-gradient(90deg, #dee2e6 1px, transparent 1px),
        linear-gradient(180deg, #dee2e6 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
    opacity: 0.6;
}

.tecnico-manual .cover-map-bg[b-fykyg3pj7d]::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 30%;
    background: #6f42c1;
    border-radius: 8px;
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(111, 66, 193, 0.2);
}

/* Tabla de contenidos */
.tecnico-manual .toc-section[b-fykyg3pj7d] {
    background-color: #f8f9fa;
    padding: 30px;
    border-bottom: 1px solid #dee2e6;
}

.tecnico-manual .toc-section h2[b-fykyg3pj7d] {
    color: #6f42c1;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.tecnico-manual .toc-list[b-fykyg3pj7d] {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 30px;
}

.tecnico-manual .toc-list li[b-fykyg3pj7d] {
    margin-bottom: 10px;
    break-inside: avoid;
}

.tecnico-manual .toc-list a[b-fykyg3pj7d] {
    color: #6f42c1;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.2s;
}

.tecnico-manual .toc-list a:hover[b-fykyg3pj7d] {
    background-color: #f3e5f5;
    color: #4a148c;
    transform: translateX(5px);
}

/* Contenido del manual */
.tecnico-manual .manual-content[b-fykyg3pj7d] {
    padding: 40px;
}

.tecnico-manual .manual-section[b-fykyg3pj7d] {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.tecnico-manual .manual-section:last-child[b-fykyg3pj7d] {
    border-bottom: none;
}

.tecnico-manual .manual-section h2[b-fykyg3pj7d] {
    color: #6f42c1;
    font-size: 2em;
    margin-bottom: 25px;
    border-bottom: 3px solid #e83e8c;
    padding-bottom: 10px;
}

.tecnico-manual .manual-section h3[b-fykyg3pj7d] {
    color: #e83e8c;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

.tecnico-manual .manual-section h4[b-fykyg3pj7d] {
    color: #495057;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
}

.tecnico-manual .manual-section p[b-fykyg3pj7d] {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #495057;
}

.tecnico-manual .manual-section ul[b-fykyg3pj7d], .tecnico-manual .manual-section ol[b-fykyg3pj7d] {
    margin-bottom: 20px;
    padding-left: 25px;
}

.tecnico-manual .manual-section li[b-fykyg3pj7d] {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Grid de información del proyecto */
.tecnico-manual .project-info-grid[b-fykyg3pj7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tecnico-manual .info-item[b-fykyg3pj7d] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tecnico-manual .info-item h4[b-fykyg3pj7d] {
    color: #6f42c1;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.tecnico-manual .info-item p[b-fykyg3pj7d] {
    margin: 0;
    color: #495057;
    font-size: 0.9em;
}

/* Stack de tecnologías */
.tecnico-manual .tech-stack[b-fykyg3pj7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tecnico-manual .tech-item[b-fykyg3pj7d] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.tecnico-manual .tech-item:hover[b-fykyg3pj7d] {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tecnico-manual .tech-item h4[b-fykyg3pj7d] {
    color: #6f42c1;
    margin-bottom: 10px;
    font-size: 1em;
}

.tecnico-manual .tech-item p[b-fykyg3pj7d] {
    margin: 0;
    color: #6c757d;
    font-size: 0.9em;
}

/* Grid de infraestructura */
.tecnico-manual .infrastructure-grid[b-fykyg3pj7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tecnico-manual .infra-item[b-fykyg3pj7d] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tecnico-manual .infra-item h4[b-fykyg3pj7d] {
    color: #6f42c1;
    margin-bottom: 10px;
    font-size: 1em;
}

.tecnico-manual .infra-item p[b-fykyg3pj7d] {
    margin: 0;
    color: #6c757d;
    font-size: 0.9em;
}

/* Bloques de código */
.tecnico-manual .code-block[b-fykyg3pj7d] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    overflow-x: auto;
}

.tecnico-manual .code-block pre[b-fykyg3pj7d] {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    line-height: 1.4;
    color: #495057;
}

.tecnico-manual .code-block code[b-fykyg3pj7d] {
    background: none;
    padding: 0;
    font-family: inherit;
}

/* Estructura de archivos */
.tecnico-manual .file-structure[b-fykyg3pj7d] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    overflow-x: auto;
}

.tecnico-manual .file-structure pre[b-fykyg3pj7d] {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    line-height: 1.4;
    color: #495057;
}

/* Características de seguridad */
.tecnico-manual .security-features[b-fykyg3pj7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tecnico-manual .security-item[b-fykyg3pj7d] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tecnico-manual .security-item h4[b-fykyg3pj7d] {
    color: #6f42c1;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.tecnico-manual .security-item ul[b-fykyg3pj7d] {
    margin: 0;
    padding-left: 20px;
}

.tecnico-manual .security-item li[b-fykyg3pj7d] {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.tecnico-manual .security-item p[b-fykyg3pj7d] {
    margin: 0;
    font-size: 0.9em;
    color: #495057;
}

/* Grid de permisos */
.tecnico-manual .permissions-grid[b-fykyg3pj7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tecnico-manual .permission-item[b-fykyg3pj7d] {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tecnico-manual .permission-item.admin[b-fykyg3pj7d] {
    border-left: 4px solid #dc3545;
}

.tecnico-manual .permission-item.supervisor[b-fykyg3pj7d] {
    border-left: 4px solid #28a745;
}

.tecnico-manual .permission-item.collaborator[b-fykyg3pj7d] {
    border-left: 4px solid #17a2b8;
}

.tecnico-manual .permission-item h4[b-fykyg3pj7d] {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.tecnico-manual .permission-item.admin h4[b-fykyg3pj7d] {
    color: #dc3545;
}

.tecnico-manual .permission-item.supervisor h4[b-fykyg3pj7d] {
    color: #28a745;
}

.tecnico-manual .permission-item.collaborator h4[b-fykyg3pj7d] {
    color: #17a2b8;
}

.tecnico-manual .permission-item p[b-fykyg3pj7d] {
    margin: 0;
    font-size: 0.9em;
    color: #6c757d;
}

/* Grid de logs */
.tecnico-manual .logs-grid[b-fykyg3pj7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tecnico-manual .log-item[b-fykyg3pj7d] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tecnico-manual .log-item h4[b-fykyg3pj7d] {
    color: #6f42c1;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.tecnico-manual .log-item p[b-fykyg3pj7d] {
    margin: 0 0 5px 0;
    font-size: 0.9em;
    color: #495057;
    font-family: 'Courier New', monospace;
}

/* Grid de métricas */
.tecnico-manual .metrics-grid[b-fykyg3pj7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tecnico-manual .metric-item[b-fykyg3pj7d] {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tecnico-manual .metric-item h4[b-fykyg3pj7d] {
    color: #6f42c1;
    margin-bottom: 10px;
    font-size: 1em;
}

.tecnico-manual .metric-item p[b-fykyg3pj7d] {
    margin: 0;
    font-size: 0.9em;
    color: #6c757d;
}

/* Pasos de recuperación */
.tecnico-manual .recovery-steps[b-fykyg3pj7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tecnico-manual .recovery-step[b-fykyg3pj7d] {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #6f42c1;
}

.tecnico-manual .recovery-step .step-number[b-fykyg3pj7d] {
    background: #6f42c1;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.tecnico-manual .recovery-step .step-content h4[b-fykyg3pj7d] {
    color: #6f42c1;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.tecnico-manual .recovery-step .step-content p[b-fykyg3pj7d] {
    margin: 0;
    color: #495057;
}

/* Información de soporte */
.tecnico-manual .support-info[b-fykyg3pj7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tecnico-manual .support-item[b-fykyg3pj7d] {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 20px;
}

.tecnico-manual .support-item h4[b-fykyg3pj7d] {
    color: #0c5460;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.tecnico-manual .support-item p[b-fykyg3pj7d] {
    margin: 0;
    color: #0c5460;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .tecnico-manual .cover-content[b-fykyg3pj7d] {
        padding: 40px 20px 20px 20px;
    }
    
    .tecnico-manual .cover-title .main-title[b-fykyg3pj7d] {
        font-size: 2em;
    }
    
    .tecnico-manual .cover-title .subtitle[b-fykyg3pj7d] {
        font-size: 1.5em;
    }
    
    .tecnico-manual .cover-title .project-name[b-fykyg3pj7d] {
        font-size: 1.3em;
    }
    
    .tecnico-manual .cover-footer-content[b-fykyg3pj7d] {
        left: 20px;
        bottom: 15px;
    }
    
    .tecnico-manual .cover-anchor[b-fykyg3pj7d] {
        left: 20px;
    }
    
    .tecnico-manual .toc-list[b-fykyg3pj7d] {
        columns: 1;
    }
    
    .tecnico-manual .project-info-grid[b-fykyg3pj7d] {
        grid-template-columns: 1fr;
    }
    
    .tecnico-manual .tech-stack[b-fykyg3pj7d] {
        grid-template-columns: 1fr;
    }
    
    .tecnico-manual .infrastructure-grid[b-fykyg3pj7d] {
        grid-template-columns: 1fr;
    }
    
    .tecnico-manual .security-features[b-fykyg3pj7d] {
        grid-template-columns: 1fr;
    }
    
    .tecnico-manual .permissions-grid[b-fykyg3pj7d] {
        grid-template-columns: 1fr;
    }
    
    .tecnico-manual .logs-grid[b-fykyg3pj7d] {
        grid-template-columns: 1fr;
    }
    
    .tecnico-manual .metrics-grid[b-fykyg3pj7d] {
        grid-template-columns: 1fr;
    }
    
    .tecnico-manual .recovery-steps[b-fykyg3pj7d] {
        grid-template-columns: 1fr;
    }
    
    .tecnico-manual .support-info[b-fykyg3pj7d] {
        grid-template-columns: 1fr;
    }
    
    .tecnico-manual .recovery-step[b-fykyg3pj7d] {
        flex-direction: column;
        text-align: center;
    }
    
    .tecnico-manual .recovery-step .step-number[b-fykyg3pj7d] {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .tecnico-manual .code-block[b-fykyg3pj7d] {
        font-size: 0.8em;
    }
    
    .tecnico-manual .file-structure[b-fykyg3pj7d] {
        font-size: 0.8em;
    }
}
/* /Pages/News/Components/NewsForm_Content.razor.rz.scp.css */
.title-row[b-hbf27r4xfz] {
    margin-bottom: 1.5rem;
}

.editor-container[b-hbf27r4xfz] {
    margin-bottom: 2rem;
}

.blazored-editor-wrapper[b-hbf27r4xfz] {
    min-height: 300px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

[b-hbf27r4xfz] .ql-toolbar {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ced4da;
    background-color: #f8f9fa;
}

[b-hbf27r4xfz] .ql-container {
    border: none;
    min-height: 250px;
}

[b-hbf27r4xfz] .ql-editor {
    min-height: 250px;
    font-size: 1rem;
    line-height: 1.5;
} 
/* /Pages/News/Components/NewsForm_GeoLocation.razor.rz.scp.css */
.map-info[b-9eh85h1q16] {
    margin-bottom: 1rem;
}

.coordinate-badge[b-9eh85h1q16] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coordinate-label[b-9eh85h1q16] {
    color: #6c757d;
    font-weight: 500;
}

.coordinate-value[b-9eh85h1q16] {
    color: #212529;
    font-family: monospace;
}

.map-wrapper[b-9eh85h1q16] {
    height: 500px;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    overflow: hidden;
}

[b-9eh85h1q16] .esri-map {
    width: 100%;
    height: 100%;
} 
/* /Pages/News/Components/NewsForm_Info.razor.rz.scp.css */
.form-group[b-j7as0nmqsy] {
    margin-bottom: 1.5rem;
}

.form-label[b-j7as0nmqsy] {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control[b-j7as0nmqsy] {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-j7as0nmqsy] {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea.form-control[b-j7as0nmqsy] {
    min-height: 100px;
    resize: vertical;
}

input[type="date"].form-control[b-j7as0nmqsy],
input[type="time"].form-control[b-j7as0nmqsy] {
    padding: 0.375rem 0.75rem;
}

[b-j7as0nmqsy] .attached-file-manager {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    background-color: #f8f9fa;
} 
/* /Pages/News/Components/NewsForm_Info_Types/NewsForm_Info_AENT.razor.rz.scp.css */
.form-group[b-rsm8uiabs8] {
    margin-bottom: 1rem;
}

.form-group label[b-rsm8uiabs8] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control[b-rsm8uiabs8] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-rsm8uiabs8] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control[b-rsm8uiabs8] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

input[type="number"].form-control[b-rsm8uiabs8] {
    -moz-appearance: textfield;
}

input[type="number"].form-control[b-rsm8uiabs8]::-webkit-outer-spin-button,
input[type="number"].form-control[b-rsm8uiabs8]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
} 
/* /Pages/News/Components/NewsForm_Info_Types/NewsForm_Info_CINT.razor.rz.scp.css */
.form-group[b-ctjxmxcpht] {
    margin-bottom: 1rem;
}

.form-group label[b-ctjxmxcpht] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control[b-ctjxmxcpht] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-ctjxmxcpht] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control[b-ctjxmxcpht] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

input[type="number"].form-control[b-ctjxmxcpht] {
    -moz-appearance: textfield;
}

input[type="number"].form-control[b-ctjxmxcpht]::-webkit-outer-spin-button,
input[type="number"].form-control[b-ctjxmxcpht]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
} 
/* /Pages/News/Components/NewsForm_Info_Types/NewsForm_Info_CNAC.razor.rz.scp.css */
.form-group[b-qkb6w9u4h5] {
    margin-bottom: 1rem;
}

.form-group label[b-qkb6w9u4h5] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control[b-qkb6w9u4h5] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-qkb6w9u4h5] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control[b-qkb6w9u4h5] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

input[type="number"].form-control[b-qkb6w9u4h5] {
    -moz-appearance: textfield;
}

input[type="number"].form-control[b-qkb6w9u4h5]::-webkit-outer-spin-button,
input[type="number"].form-control[b-qkb6w9u4h5]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Estilos para el gestor de archivos adjuntos */
.attached-files[b-qkb6w9u4h5] {
    margin-top: 1rem;
}

/* Limitar ancho del componente AttachedFileManager */
:deep(.attached-files-manager)[b-qkb6w9u4h5] {
    max-width: 600px !important;
}

.attached-files .file-item[b-qkb6w9u4h5] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.attached-files .file-item .file-name[b-qkb6w9u4h5] {
    flex-grow: 1;
    margin-right: 1rem;
}

.attached-files .file-item .file-actions[b-qkb6w9u4h5] {
    display: flex;
    gap: 0.5rem;
}

.attached-files .file-item .btn[b-qkb6w9u4h5] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
} 
/* /Pages/News/Components/NewsForm_Info_Types/NewsForm_Info_DTER.razor.rz.scp.css */
.form-group[b-0s9r89yqfn] {
    margin-bottom: 1rem;
}

.form-group label[b-0s9r89yqfn] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control[b-0s9r89yqfn] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-0s9r89yqfn] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control[b-0s9r89yqfn] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

input[type="number"].form-control[b-0s9r89yqfn] {
    -moz-appearance: textfield;
}

input[type="number"].form-control[b-0s9r89yqfn]::-webkit-outer-spin-button,
input[type="number"].form-control[b-0s9r89yqfn]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
} 
/* /Pages/News/Components/NewsForm_Info_Types/NewsForm_Info_IACA.razor.rz.scp.css */
.form-group[b-1tbbgr318w] {
    margin-bottom: 1rem;
}

.form-group label[b-1tbbgr318w] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control[b-1tbbgr318w] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-1tbbgr318w] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control[b-1tbbgr318w] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

select.form-control[multiple][b-1tbbgr318w] {
    background-image: none;
    height: auto;
    padding: 0.375rem;
}

select.form-control[multiple] option[b-1tbbgr318w] {
    padding: 0.375rem 0.75rem;
}

select.form-control[multiple] option:checked[b-1tbbgr318w] {
    background-color: #007bff;
    color: white;
}

input[type="number"].form-control[b-1tbbgr318w] {
    -moz-appearance: textfield;
}

input[type="number"].form-control[b-1tbbgr318w]::-webkit-outer-spin-button,
input[type="number"].form-control[b-1tbbgr318w]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
} 
/* /Pages/News/Components/NewsForm_Info_Types/NewsForm_Info_IDI.razor.rz.scp.css */
.form-group[b-uv80npt31g] {
    margin-bottom: 1rem;
}

.form-group label[b-uv80npt31g] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control[b-uv80npt31g] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-uv80npt31g] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control[b-uv80npt31g] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

select.form-control[multiple][b-uv80npt31g] {
    background-image: none;
    height: auto;
    padding: 0.375rem;
}

select.form-control[multiple] option[b-uv80npt31g] {
    padding: 0.375rem 0.75rem;
}

select.form-control[multiple] option:checked[b-uv80npt31g] {
    background-color: #007bff;
    color: white;
}

input[type="number"].form-control[b-uv80npt31g] {
    -moz-appearance: textfield;
}

input[type="number"].form-control[b-uv80npt31g]::-webkit-outer-spin-button,
input[type="number"].form-control[b-uv80npt31g]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
} 
/* /Pages/News/Components/NewsForm_Info_Types/NewsForm_Info_INFC.razor.rz.scp.css */
.form-group[b-oynwpyv9yd] {
    margin-bottom: 1rem;
}

.form-group label[b-oynwpyv9yd] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control[b-oynwpyv9yd] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-oynwpyv9yd] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control[b-oynwpyv9yd] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

input[type="number"].form-control[b-oynwpyv9yd] {
    -moz-appearance: textfield;
}

input[type="number"].form-control[b-oynwpyv9yd]::-webkit-outer-spin-button,
input[type="number"].form-control[b-oynwpyv9yd]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Estilos para el gestor de archivos adjuntos */
.attached-files[b-oynwpyv9yd] {
    margin-top: 1rem;
}

/* Limitar ancho del componente AttachedFileManager */
:deep(.attached-files-manager)[b-oynwpyv9yd] {
    max-width: 600px !important;
}

.attached-files .file-item[b-oynwpyv9yd] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.attached-files .file-item .file-name[b-oynwpyv9yd] {
    flex-grow: 1;
    margin-right: 1rem;
}

.attached-files .file-item .file-actions[b-oynwpyv9yd] {
    display: flex;
    gap: 0.5rem;
}

.attached-files .file-item .btn[b-oynwpyv9yd] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Estilos para el selector de fechas */
.date-input[b-oynwpyv9yd] {
    position: relative;
}

.date-input input[b-oynwpyv9yd] {
    padding-right: 2.5rem;
}

.date-input .calendar-icon[b-oynwpyv9yd] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6c757d;
} 
/* /Pages/News/Components/NewsForm_Info_Types/NewsForm_Info_NORM.razor.rz.scp.css */
.form-group[b-vv8giw4z02] {
    margin-bottom: 1rem;
}

.form-group label[b-vv8giw4z02] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control[b-vv8giw4z02] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-vv8giw4z02] {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control[b-vv8giw4z02] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

input[type="number"].form-control[b-vv8giw4z02] {
    -moz-appearance: textfield;
}

input[type="number"].form-control[b-vv8giw4z02]::-webkit-outer-spin-button,
input[type="number"].form-control[b-vv8giw4z02]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Estilos para campos obligatorios */
.required-field[b-vv8giw4z02] {
    color: #dc3545;
    font-weight: bold;
    margin-left: 2px;
}

/* Estilo para labels con tooltips */
.form-group label[b-vv8giw4z02] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Espaciado entre label y tooltip */
.validation-tooltip-container[b-vv8giw4z02] {
    margin-left: 5px;
} 
/* /Pages/News/Components/NewsForm_Labels.razor.rz.scp.css */
.tag-selector-container[b-5lg69zqilc] {
    margin-bottom: 2rem;
}

[b-5lg69zqilc] .tag-selector {
    min-height: 100px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.5rem;
}

[b-5lg69zqilc] .selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

[b-5lg69zqilc] .tag-item {
    background-color: #e9ecef;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-5lg69zqilc] .tag-remove {
    cursor: pointer;
    color: #6c757d;
}

[b-5lg69zqilc] .tag-remove:hover {
    color: #dc3545;
} 
/* /Pages/News/NewsForm.razor.rz.scp.css */
.accordion-collapse[b-87hf8mlf66] {
    position: relative;
    z-index: 1;
    overflow-y: visible;
}

.map-wrapper[b-87hf8mlf66] {
    position: relative;
    width: 100%;
    height: 600px;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-wrapper :deep(.map-container)[b-87hf8mlf66] {
    height: 100%;
}

.accordion-item[b-87hf8mlf66] {
    position: relative;
    z-index: 1;
    overflow: visible;
    margin-bottom: 10px; 
}

.footer-buttons[b-87hf8mlf66] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1rem;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-bottom[b-87hf8mlf66] {
    position: sticky;
    bottom: 0;
}

.blazored-editor-container[b-87hf8mlf66] {
    padding: 1rem;
    background-color: #fff;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
}

.form-group label[b-87hf8mlf66] {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.is-invalid[b-87hf8mlf66] {
    border-color: #dc3545 !important;
}

.field-error[b-87hf8mlf66] {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
}

.editor-container[b-87hf8mlf66] {
    margin-bottom: 1rem;
}

.blazored-editor-wrapper[b-87hf8mlf66] {
    min-height: 300px;
    max-height: 500px;
    overflow-x: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-align: stretch;
    -webkit-box-flex: 3;
}

:deep(.ql-toolbar)[b-87hf8mlf66] {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #dee2e6 !important;
    background-color: #f8f9fa;
    padding: 4px 8px !important;
}

:deep(.ql-editor)[b-87hf8mlf66] {
    min-height: 250px;
    max-height: 400px;
    overflow-y: auto !important;
    overflow-x: hidden;
    padding: 8px !important;
}

:deep(.ql-container)[b-87hf8mlf66] {
    border: none !important;
    height: calc(250px - 42px) !important;
}

:deep(.form-label)[b-87hf8mlf66] {
    font-weight: 500;
}

.accordion-header .accordion-button[b-87hf8mlf66] {
    color: #007bff;
    font-weight: bold;
    background-color: #f0f0f0;
}

.accordion-body[b-87hf8mlf66] {
    padding: 1.25rem;
    overflow-y: visible;
}

/* El cuerpo entero debe permitir scroll */
body[b-87hf8mlf66] {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Ajuste al contenedor principal */
.news-form-container[b-87hf8mlf66] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px);
    padding-bottom: 70px;
    position: relative;
}

/* Contenedor principal con padding para los botones */
.form-scroll-container[b-87hf8mlf66] {
    flex: 1;
    padding-bottom: 80px;
}

/* Ajuste para el contenedor de tabs */
.tab-content[b-87hf8mlf66] {
    background: white;
    border: none; /* Quitar todos los bordes */
    border-radius: 0;
    padding: 0.75rem;
    margin-bottom: 80px;
    height: calc(100vh - 350px);
    min-height: 350px;
    overflow-y: visible;
}

/* Ajustes para el título */
.title-row[b-87hf8mlf66] {
    margin: 0.5rem 0 1rem 0;
    padding: 0 0.5rem;
}

.title-row .form-group[b-87hf8mlf66] {
    margin-bottom: 0;
}

.title-row label[b-87hf8mlf66] {
    color: #495057;
    font-weight: 500;
}

/* Ajuste del padding superior del contenido */
.tab-content[b-87hf8mlf66] {
    padding-top: 1rem;
}

/* Ajustes para el tab de etiquetas */
#etiquetas[b-87hf8mlf66] {
    height: 100%;
    min-height: 350px;
}

#etiquetas :deep(.typeahead-container)[b-87hf8mlf66] {
    max-width: 800px;
    margin: 0 auto;
}

/* Ajuste de altura para todos los tabs */
.tab-pane[b-87hf8mlf66] {
    height: 100%;
    min-height: 350px;
    padding: 0.75rem;
}

/* Ajuste para el contenedor del editor */
#contenido .editor-container[b-87hf8mlf66] {
    height: 100%;
    min-height: 350px;
}

/* Ajuste para el mapa */
#ubicacion .map-wrapper[b-87hf8mlf66] {
    height: 100%;
    min-height: 350px;
}

/* Estilos para las tabs */
.nav-tabs[b-87hf8mlf66] {
    border-bottom: none; /* Quitar borde inferior */
    margin-bottom: 0.5rem;
}

.nav-tabs .nav-link[b-87hf8mlf66] {
    color: #495057;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-weight: 500;
}

.nav-tabs .nav-link:hover[b-87hf8mlf66] {
    border-color: transparent;
    color: #007bff;
}

.nav-tabs .nav-link.active[b-87hf8mlf66] {
    color: #007bff;
    background-color: #fff;
    border-color: transparent; /* Quitar bordes del tab activo */
}

/* Ajuste para la etiqueta de Contenido */
.form-group label[for="content"][b-87hf8mlf66] {
    margin-bottom: 0.25rem;
}
/* /Pages/News/NewsUserList.razor.rz.scp.css */
.table th[b-j7silc8xdx] {
    cursor: pointer;
}

.filter-container[b-j7silc8xdx] {
    margin-bottom: 10px;
}

.noticias-container[b-j7silc8xdx] {
    padding: 20px;
    min-height: calc(100vh - 130px); /* Restar altura del header y footer y agregar algo de padding */
    /* No definimos overflow aquí para no entrar en conflicto con .scroll-enabled */
}

.table-responsive[b-j7silc8xdx] {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.busqueda-filtro[b-j7silc8xdx] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-box[b-j7silc8xdx] {
    flex: 1;
    max-width: 500px;
    margin-right: 10px;
}

.filter-box[b-j7silc8xdx] {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .busqueda-filtro[b-j7silc8xdx] {
        flex-direction: column;
    }
    
    .search-box[b-j7silc8xdx], .filter-box[b-j7silc8xdx] {
        margin-bottom: 10px;
        max-width: 100%;
    }
    
    /* Asegurar que los iconos de acciones sigan en línea horizontal en móviles */
    td:last-child[b-j7silc8xdx] {
        min-width: 100px;
    }
    
    td:last-child .btn[b-j7silc8xdx] {
        min-width: 28px;
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Para pantallas muy pequeñas, mantener los iconos en línea pero más compactos */
    td:last-child[b-j7silc8xdx] {
        min-width: 80px;
    }
    
    td:last-child .btn[b-j7silc8xdx] {
        min-width: 24px;
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        margin: 0 1px;
    }
}

/* Botones de acción */
.btn-editar[b-j7silc8xdx], .btn-eliminar[b-j7silc8xdx] {
    margin: 0 5px;
}

/* Forzar que los iconos de acciones siempre estén en línea horizontal */
td:last-child[b-j7silc8xdx] {
    white-space: nowrap;
    min-width: 120px;
}

td:last-child .btn[b-j7silc8xdx] {
    display: inline-block;
    white-space: nowrap;
    margin: 0 2px;
    min-width: 32px;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Estilo para las cabeceras de tabla */
th[b-j7silc8xdx] {
    background-color: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 10;
    cursor: pointer;
}

th:hover[b-j7silc8xdx] {
    background-color: #e9ecef;
}

/* Estilos para h3 (título de la lista) */
h3[b-j7silc8xdx] {
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #1b6ec2;
    padding-bottom: 10px;
    width: 100%;
}

/* Estilos para noticias bloqueadas */
.table-warning[b-j7silc8xdx] {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.table-warning:hover[b-j7silc8xdx] {
    background-color: rgba(255, 193, 7, 0.2) !important;
}

/* Estilos para botones deshabilitados */
.btn:disabled[b-j7silc8xdx] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:disabled:hover[b-j7silc8xdx] {
    opacity: 0.5;
}

/* Estilo para el ícono de bloqueo */
.fa-lock[b-j7silc8xdx] {
    font-size: 0.9em;
    vertical-align: middle;
}
/* /Pages/UploadFiles/FileManager.razor.rz.scp.css */
/* Estilos para el componente FileManager y sus subcomponentes */

/* Estilos para el componente FileUploader */
.file-uploader[b-k4slhf520z] {
    width: 100%;
}

.upload-area[b-k4slhf520z] {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover[b-k4slhf520z] {
    border-color: #007bff;
    background-color: #e3f2fd;
}

.upload-area.drag-over[b-k4slhf520z] {
    border-color: #28a745;
    background-color: #d4edda;
    transform: scale(1.02);
}

.upload-area.uploading[b-k4slhf520z] {
    border-color: #007bff;
    background-color: #e3f2fd;
    pointer-events: none;
}

.upload-prompt[b-k4slhf520z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-prompt h5[b-k4slhf520z] {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.upload-prompt p[b-k4slhf520z] {
    margin-bottom: 1rem;
    color: #6c757d;
}

.file-selected[b-k4slhf520z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.file-selected .fw-bold[b-k4slhf520z] {
    margin-bottom: 0.5rem;
    color: #495057;
}

.upload-progress[b-k4slhf520z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-progress .spinner-border[b-k4slhf520z] {
    margin-bottom: 1rem;
}

/* Estilos para el componente FileList */
.file-list[b-k4slhf520z] {
    width: 100%;
}

.file-list .table th[b-k4slhf520z] {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.file-list .table td[b-k4slhf520z] {
    vertical-align: middle;
}

.file-list .badge[b-k4slhf520z] {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

.file-list .btn-group .btn[b-k4slhf520z] {
    margin-right: 0.25rem;
}

.file-list .btn-group .btn:last-child[b-k4slhf520z] {
    margin-right: 0;
}

/* Estilos para paginación */
.pagination .page-link[b-k4slhf520z] {
    color: #007bff;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link[b-k4slhf520z] {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.pagination .page-item.disabled .page-link[b-k4slhf520z] {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

/* Estilos para filtros */
.input-group-text[b-k4slhf520z] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.form-control:focus[b-k4slhf520z],
.form-select:focus[b-k4slhf520z] {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Estilos para estados de archivos */
.table-secondary[b-k4slhf520z] {
    background-color: #e2e3e5 !important;
}

.table-secondary td[b-k4slhf520z] {
    color: #6c757d;
}

/* Estilos para iconos de archivos */
.file-list .fa-file-pdf[b-k4slhf520z] {
    color: #dc3545;
}

.file-list .fa-file-word[b-k4slhf520z] {
    color: #007bff;
}

.file-list .fa-file-excel[b-k4slhf520z] {
    color: #28a745;
}

.file-list .fa-file-powerpoint[b-k4slhf520z] {
    color: #fd7e14;
}

.file-list .fa-image[b-k4slhf520z] {
    color: #17a2b8;
}

.file-list .fa-file-alt[b-k4slhf520z] {
    color: #6c757d;
}

.file-list .fa-file-archive[b-k4slhf520z] {
    color: #343a40;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .upload-area[b-k4slhf520z] {
        padding: 1rem;
        min-height: 150px;
    }
    
    .upload-prompt h5[b-k4slhf520z] {
        font-size: 1.1rem;
    }
    
    .file-list .table-responsive[b-k4slhf520z] {
        font-size: 0.875rem;
    }
    
    .file-list .btn-group .btn[b-k4slhf520z] {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* Animaciones */
.upload-area[b-k4slhf520z] {
    animation: fadeIn-b-k4slhf520z 0.3s ease-in;
}

@keyframes fadeIn-b-k4slhf520z {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drag-over[b-k4slhf520z] {
    animation: pulse-b-k4slhf520z 0.5s ease-in-out;
}

@keyframes pulse-b-k4slhf520z {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}
/* /Utilities/AttachedFileManager.razor.rz.scp.css */
.attached-files-manager[b-so8bg7ek00] {
    margin: 1rem 0;
    max-width: 600px; /* Limitar ancho máximo para evitar interferencia con botones */
}

.file-input-section[b-so8bg7ek00] {
    margin-bottom: 1rem;
}

.files-list[b-so8bg7ek00] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.file-item[b-so8bg7ek00] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.file-actions[b-so8bg7ek00] {
    display: flex;
    gap: 0.5rem;
}

.file-name[b-so8bg7ek00] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%; /* Aumentar un poco el espacio para el nombre del archivo */
    flex: 1; /* Permitir que tome el espacio disponible */
}

.allowed-files-info[b-so8bg7ek00] {
    margin-top: 0.25rem;
}

.allowed-files-info small[b-so8bg7ek00] {
    color: #6c757d !important;
    font-size: 0.75rem;
} 
/* /Utilities/EsriMap.razor.rz.scp.css */
.map-container[b-8wzp5m5jgq] {
    width: 100%;
    height: 650px;
    display: flex;
    flex-direction: column;
}

.map-controls[b-8wzp5m5jgq] {
    padding: 8px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-bottom: none;
}

.search-container[b-8wzp5m5jgq] {
    margin-bottom: 10px;
    width: 100%;
}

.esri-search[b-8wzp5m5jgq] {
    width: 100%;
}

.coordinates[b-8wzp5m5jgq] {
    font-family: monospace;
}

.esri-map[b-8wzp5m5jgq] {
    flex: 1;
    min-height: 514px;
    border: 1px solid #ddd;
    width: 95%;
    margin: 0 auto;
} 
/* /Utilities/LinkListInput.razor.rz.scp.css */
.link-list-container[b-pms1n40n47] {
    width: 100%;
}

.link-list[b-pms1n40n47] {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.5rem;
}

.link-item[b-pms1n40n47] {
    padding: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.link-item:last-child[b-pms1n40n47] {
    border-bottom: none;
}

.link-item a[b-pms1n40n47] {
    color: #0d6efd;
    text-decoration: none;
}

.link-item a:hover[b-pms1n40n47] {
    text-decoration: underline;
}

.link-item .btn-danger[b-pms1n40n47] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
} 
/* /Utilities/TagSelector.razor.rz.scp.css */
.tag-selector[b-j7guuy64o8] {
    margin-bottom: 1rem;
}

.selected-tags[b-j7guuy64o8] {
    min-height: 38px;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    background-color: #fff;
}

[b-j7guuy64o8](.badge) {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

[b-j7guuy64o8](.badge .btn-close) {
    font-size: 0.65em;
    margin-left: 0.5rem;
    padding: 0.25rem;
}

[b-j7guuy64o8](.btn-close:focus) {
    box-shadow: none;
}

.input-group > .form-select[b-j7guuy64o8] {
    flex: 1 1 auto;
}

.input-group > .btn[b-j7guuy64o8] {
    padding-left: 1rem;
    padding-right: 1rem;
}

.text-muted.small[b-j7guuy64o8] {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
/* /Utilities/TagSelectorBlazoredTypeahead.razor.rz.scp.css */
.tag-selector-blazored[b-qfwdxde3xu] {
    margin-bottom: 1rem;
}

.selected-tags[b-qfwdxde3xu] {
    min-height: 38px;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: #fff;
}

[b-qfwdxde3xu](.badge) {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

[b-qfwdxde3xu](.badge .btn-close) {
    font-size: 0.65em;
    margin-left: 0.5rem;
    padding: 0.25rem;
}

[b-qfwdxde3xu](.btn-close:focus) {
    box-shadow: none;
}

[b-qfwdxde3xu](.blazored-typeahead) {
    border-radius: 0.375rem;
}

[b-qfwdxde3xu](.blazored-typeahead__input) {
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #dee2e6;
}

[b-qfwdxde3xu](.blazored-typeahead__input:focus) {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

[b-qfwdxde3xu](.blazored-typeahead__result) {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    color: #212529;
}

[b-qfwdxde3xu](.blazored-typeahead__result:last-child) {
    border-bottom: none;
}

[b-qfwdxde3xu](.blazored-typeahead__active-item) {
    background-color: #e9ecef;
    color: #212529;
}

.alphabet-filter[b-qfwdxde3xu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.alphabet-filter .btn[b-qfwdxde3xu] {
    min-width: 32px;
    font-size: 0.875rem;
}

.alphabet-filter .btn-outline-primary:hover[b-qfwdxde3xu] {
    background-color: #0d6efd;
    color: white;
}

/* Estilo para los resultados */
.tag-result[b-qfwdxde3xu] {
    padding: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.tag-result:hover[b-qfwdxde3xu] {
    background-color: #e9ecef;
    color: #212529;
}

.no-results[b-qfwdxde3xu] {
    padding: 1rem;
    text-align: center;
    color: #6c757d;
}

[b-qfwdxde3xu](.blazored-typeahead__result:hover),
[b-qfwdxde3xu](.blazored-typeahead__active-item) {
    background-color: #e9ecef;
    color: #212529;
}
