/* =============================================================================
   SGCI THEME V2 - EXPORTACIONES E IMPORTACIONES
   Estilos específicos para exportaciones PDF/Excel e importación de archivos
   ============================================================================= */

/* =============================================================================
   SGCI EXCEL IMPORT STYLES PROFESIONALES
   ============================================================================= */

.sgci-excel-import-container {
    max-width: 900px;
    margin: 20px auto;
}

.sgci-excel-import-card {
    background: var(--sgci-bg-primary);
    border: 1px solid var(--sgci-gray-200);
    box-shadow: var(--sgci-shadow-md);
    padding: 2rem;
    margin-top: 1.5rem;
    border-radius: 8px;
}

.sgci-excel-import-title {
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--sgci-gray-200);
    color: var(--sgci-gray-800);
    font-weight: 600;
}

.sgci-excel-import-form {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--sgci-gray-50);
    border: 1px solid var(--sgci-gray-200);
    border-radius: 8px;
}

.sgci-excel-import-form input[type="file"] {
    margin-right: 1rem;
    padding: 0.5rem;
    border: 1px solid var(--sgci-gray-300);
    border-radius: 6px;
}

#validation-results {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid;
}

#validation-results.notice-success {
    background: #f0fff4;
    border-left-color: var(--sgci-success);
    color: var(--sgci-success);
}

#validation-results.notice-error {
    background: #fef5f5;
    border-left-color: var(--sgci-danger);
    color: var(--sgci-danger);
}

#validation-results ul {
    margin: 10px 0;
    padding-left: 20px;
}

#conversion-progress {
    text-align: center;
    padding: 2rem;
    background: var(--sgci-gray-50);
    border: 1px solid var(--sgci-gray-200);
    border-radius: 8px;
    color: var(--sgci-gray-700);
} 