 :root {
     --primary-blue: #004aad;
     --primary-light: #1976d2;
     --background: #f1f5f9;
     --text-color: #ffffff;
     --accent-color: #1976d2;
     --border-radius: 1.5rem;
     --transition: 0.3s ease;
     --spacing-sm: 0.5rem;
     --spacing-md: 1rem;
     --spacing-lg: 2rem;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background-color: #e9e0e07d;
     color: var(--text-color);
     line-height: 1.6;
     padding: 0;
     margin: 0;
     min-height: 100vh;
     position: relative;
     padding-bottom: 60px;
     /* Espacio para el footer fijo */
 }


 .container {
     width: 90%;
     max-width: 1400px;
     margin: 0 auto;
     padding: var(--spacing-md);
 }

 .main-container {
     background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
     border-radius: var(--border-radius-lg);
     padding: var(--spacing-lg);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.1);
     margin: var(--spacing-md) auto;

 }

 .oculto {
     display: none !important;
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px);
 }


 /* NAV */
 .custom-header {
     background-color: var(--primary-blue);
     padding: 0.5rem 1rem;
     width: 100%;
 }

 .header-container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     min-height: 40px;
     padding: var(--spacing-xs) var(--spacing-md);
     max-width: 1400px;
     margin: 0 auto;
 }

 .logo-img {
     max-width: 120px;
     height: auto;
 }

 .header-title {
     color: white;
     font-weight: 600;
     text-align: center;
     font-size: clamp(1rem, 4vw, 1.8rem);
 }

 .header-date {
     color: var(--text-color);
     font-weight: 700;
     font-size: clamp(0.75rem, 2.5vw, 1rem);
 }

 /* DROP AREA */
 #dropAreaEstilos {
     border: 0.1875rem dashed #2c2a2a7a;
     border-radius: 1.5rem;
     min-height: 18rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: #000;
     margin: var(--spacing-xl) auto var(--spacing-lg);
     font-size: clamp(1rem, 4vw, 1.375rem);
     background: linear-gradient(135deg, #f6f6f6 0%, #fcfeff 100%);
     cursor: pointer;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     font-weight: 600;
     width: 95%;
     max-width: 800px;
     padding: var(--spacing-md);
     float: none;
     /* evita que se pegue a la izquierda */
     margin: 0 auto;
     /* centra horizontalmente */
 }

 #dropAreaEstilos::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(149, 146, 146, 0.173), transparent);
     transform: rotate(45deg);
     transition: all 0.6s ease;
     opacity: 0;
 }

 #dropAreaEstilos:hover::before {
     animation: shine 1.5s ease-in-out infinite;
     opacity: 1;
 }

 @keyframes shine {
     0% {
         transform: translateX(-100%) translateY(-100%) rotate(45deg);
     }

     100% {
         transform: translateX(100%) translateY(100%) rotate(45deg);
     }
 }

 #dropAreaEstilos:hover {
     border-color: #434141;
     background: linear-gradient(135deg, #EBEBEB 0%, #F5F5F5 100%);
     transform: scale(1.02);
     color: #464444;
 }

 #dropAreaEstilos.dragover {
     border-color: #9f0f0f99;
     background: linear-gradient(135deg, #e3f2fd 0%, #e4e7e9 100%);
     transform: scale(1.05);
     color: #9f0f0f99;
 }

 .upload-icon {
     font-size: clamp(2.5rem, 10vw, 3.5rem);
     margin-bottom: var(--spacing-sm);
     display: block;
     transition: var(--transition);
     color: #9f0f0f99;
     filter: drop-shadow(0 0.25rem 0.5rem rgba(247, 62, 0, 0.2));
 }

 #dropAreaEstilos:hover .upload-icon {
     transform: scale(1.15) rotate(5deg);
     color: #b50000;
 }

 .upload-hint {
     color: #8b6464;
     font-size: clamp(0.75rem, 3vw, 0.85rem);
     font-weight: 400;
     margin-top: 0.5rem;
     opacity: 0.8;
     text-align: center;
     padding: 0 var(--spacing-sm);
 }

 .select-button {
     background: linear-gradient(135deg, #4facfe 0%, #005bea 100%);
     color: white;
     border: none;
     padding: 0.75rem 1.5rem;
     border-radius: 3.125rem;
     font-size: clamp(0.875rem, 3vw, 1rem);
     font-weight: 600;
     cursor: pointer;
     margin-top: var(--spacing-sm);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     width: auto;
     min-width: 140px;
 }

 .select-button:hover {
     transform: translateY(-2px);

 }

 .file-input {
     display: none;
 }

 @media (max-width: 480px) {
     #dropAreaEstilos {
         min-height: 14rem;
         font-size: clamp(0.8rem, 4vw, 1.1rem);
         padding: var(--spacing-sm);
     }

     .upload-icon {
         font-size: clamp(2rem, 15vw, 3rem);
     }

     .select-button {
         font-size: clamp(0.8rem, 3vw, 0.95rem);
         min-width: 120px;
         padding: 0.5rem 1rem;
     }
 }


 /* Icono del documento */
 .document-icon {
     font-size: 3.5rem;
     margin-bottom: 1rem;
     display: block;
     position: relative;
     z-index: 1;
 }



 /* === SECCIÓN DE RESULTADOS === */
 .results-section {
     max-width: 1200px;
     /* ancho máximo, cámbialo a 600px, 500px, etc. */
     margin: 0 auto;
     /* lo centra horizontalmente */
     margin-top: 0 !important;
     padding-top: 0 !important;
     position: relative;
     top: -70px;
     margin-bottom: 15px;
     padding: 5px;
     background: #8b8a8a1b;
     border-radius: 20px;
     box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
 }

 .status-section {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 16px;
     margin-bottom: 32px;
     margin-top: 20px;
 }

 .status-item {
     margin-top: 20px;
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 12px 24px;
     border-radius: 50px;
     font-weight: 500;
     font-size: 14px;
     transition: all 0.2s ease;
 }

 .status-valid {
     background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
     color: #065f46;
     border: 1px solid #a7f3d0;
 }

 .status-error {
     background: linear-gradient(135deg, #fef2f2 0%, #fef2f2 100%);
     color: #dc2626;
     border: 1px solid #fecaca;
 }

 .status-icon {
     font-size: 16px;
     font-weight: 600;
 }

 .results-title {
     font-size: 32px;
     font-weight: 600;
     color: #111827;
     margin-bottom: 8px;
     letter-spacing: -0.025em;
     text-align: center;
 }

 .results-subtitle {
     font-size: 16px;
     color: #6b7280;
     font-weight: 400;
     text-align: center;
     margin-bottom: 32px;
 }

 /* === MÉTRICAS === */
 .metrics {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 16px;
     margin-bottom: 32px;
 }

 .metric-card {
     background: #f9f4f4ef;
     padding: 16px;
     border-radius: 12px;
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
     border: 2px solid #3b82f6;
     /* borde azul visible siempre */
 }

 /* Efecto de línea animada al pasar el mouse */
 .metric-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     /* inicia en 0 */
     height: 100%;
     border-radius: 12px;
     transition: width 0.5s ease;
     z-index: 2;
     /* encima del contenido */
 }

 .metric-card:hover::after {
     width: 100%;
     /* recorre todo el borde horizontal */
 }

 .metric-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
 }

 /* === MÉTRICAS === */
 .metric-label {
     font-size: 13px;
     color: #1e3a8a;
     /* azul elegante */
     font-weight: 600;
     /* negrita */
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 0.05em;
 }

 .metric-value {
     font-size: 20px;
     font-weight: 700;
     /* más prominente */
     color: #0f172a;
     /* negro azulado elegante */
     letter-spacing: -0.025em;
 }

 /* === SECCIÓN DE ERRORES MODERNA === */
 .errors-section {
     background: #f0f9ff;
     /* azul muy suave */
     border: 1px solid #3b82f6;
     /* borde azul elegante */
     border-radius: 16px;
     padding: 24px;
     margin-bottom: 32px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
     /* sombra ligera */
     margin-top: 0;
     max-width: 1000px;
     /* ancho máximo deseado */
     width: 90%;
     margin: 10px auto 32px auto;
     position: relative;
     top: -35px;
     /* mueve 20px hacia arriba */
 }

 .errors-title {
     font-size: 22px;
     font-weight: 700;
     color: #1e3a8a;
     /* azul oscuro elegante */
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .errors-list {
     color: #0f172a;
     /* negro elegante para el texto */
     line-height: 1.6;
 }

 .errors-list hr {
     border: none;
     height: 1px;
     background: #3b82f6;
     /* azul elegante */
     margin: 16px 0;
 }

 .errors-list strong {
     color: #1e3a8a;
     /* azul elegante para resaltar */
 }

 .errors-list ul {
     margin-left: 20px;
     margin-top: 8px;
 }

 .errors-list li {
     margin-bottom: 6px;
 }

 @media (max-width: 768px) {
     .metrics {
         grid-template-columns: 1fr;
         gap: 12px;
     }

     .errors-section {
         padding: 16px;
     }
 }


 /* === DETALLE DE ARCHIVOS === */
 .detail-section {

     background: #8b8a8a1b;
     border-radius: 16px;
     padding: 20px;
     /* más espacio arriba, menos abajo */
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
     margin: 40px auto 32px auto;
     /* espacio arriba para separar del borde de la página */
     max-width: 1200px;
     /* ancho centrado */
     position: relative;
     top: -50px;
     /* eliminar desplazamiento negativo */
 }

 /* Título */
 .detail-title {
     font-size: 28px;
     font-weight: 700;
     color: #0f172a;
     /* negro elegante */
     margin-bottom: 32px;
     /* más espacio debajo del título */
     text-align: center;

 }


 /* Items de archivos */


 /* === Tabla CFDIs moderna === */
 .cfdi-table {
     width: 100%;
     border-collapse: separate;
     /* separa las celdas para bordes redondeados */
     border-spacing: 0 6px;
     /* espacio entre filas */
     margin-top: -10px;
     padding: 10px;
     font-size: 14px;
 }

 /* Encabezados */
 .cfdi-table th {
     background: #e0f2fe;
     /* azul claro elegante */
     font-weight: 700;
     /* negrita */
     color: #0f172a;
     /* negro azulado */
     padding: 12px 16px;
     text-align: left;
     border: none;
     border-radius: 8px 8px 0 0;
     /* bordes superiores redondeados */
 }

 /* Filas de datos */
 .cfdi-table td {
     background: #ffffff;
     /* fondo blanco */
     padding: 12px 16px;
     font-weight: 600;
     /* negrita */
     color: #0f172a;
     /* negro elegante */
     border: none;
 }

 /* Alternar color de filas */
 .cfdi-table tr:nth-child(even) td {
     background: #f0f9ff;
     /* azul muy suave */
 }

 /* Hover suave */
 .cfdi-table tr:hover td {
     background: #dbeafe;
     /* azul suave al pasar el mouse */
     transition: background 0.3s ease;
 }

 /* Bordes generales como separadores elegantes */
 .cfdi-table td+td {
     border-left: 1px solid #cbd5e1;
     /* separador gris claro */
 }

 /* Primera fila con borde redondeado superior */
 .cfdi-table tr:first-child td:first-child {
     border-radius: 8px 0 0 0;
 }

 .cfdi-table tr:first-child td:last-child {
     border-radius: 0 8px 0 0;
 }

 /* Última fila con borde redondeado inferior */
 .cfdi-table tr:last-child td:first-child {
     border-radius: 0 0 0 8px;
 }

 .cfdi-table tr:last-child td:last-child {
     border-radius: 0 0 8px 0;
 }

 /* Estilo opcional para mensajes "No hay CFDIs" */
 .no-cfdi-message {
     font-style: italic;
     color: #1e3a8a;
     text-align: center;
     margin-top: 12px;
     font-weight: 600;
 }


 /* === RESPONSIVE === */
 @media (max-width: 768px) {
     .container {
         padding: 16px;
     }

     .upload-section,
     .results-section,
     .detail-section,
     .loading-section {
         padding: 32px 24px;
     }

     .status-section {
         flex-direction: column;
         gap: 12px;
     }

     .results-title {
         font-size: 24px;
     }

     .metrics {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
         /* antes 280px */
     }


     .metric-card {
         padding: 24px;
     }

     .file-info {
         grid-template-columns: 1fr;
     }

     .cfdi-table {
         font-size: 12px;
     }

     .cfdi-table th,
     .cfdi-table td {
         padding: 8px;
     }
 }

 /* Contenedor de botones */
.boton-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    /* espacio entre botones */
    padding: 8px;
    margin: 8px 0;
    flex-wrap: wrap;
    /* permite que se ajusten en pantallas pequeñas */
    margin-top: -90px;
}

/* Botón Reiniciar (Azul) */
.btn-reset {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25),
        0 4px 12px rgba(30, 64, 175, 0.15);

    /* Gradiente principal en azules */
    background: linear-gradient(135deg,
            #1e3a8a 0%,
            #1e40af 25%,
            #3b82f6 50%,
            #60a5fa 75%,
            #93c5fd 100%);

    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-width: 160px;
    z-index: 10;
}

/* Efecto de brillo para Reiniciar */
.btn-reset::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

/* Efecto hover para Reiniciar */
.btn-reset:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4),
        0 8px 25px rgba(30, 64, 175, 0.3),
        0 0 0 3px rgba(147, 197, 253, 0.2);

    background: linear-gradient(135deg,
            #1e3a8a 0%,
            #1e40af 25%,
            #3b82f6 50%,
            #60a5fa 75%,
            #93c5fd 100%);
}

.btn-reset:hover::before {
    left: 100%;
}

/* Efecto active/click para Reiniciar */
.btn-reset:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3),
        0 4px 12px rgba(30, 64, 175, 0.2);
}

/* Icono para Reiniciar */
.btn-reset i {
    margin-right: 8px;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Estados especiales para Reiniciar */
.btn-reset:focus {
    outline: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25),
        0 4px 12px rgba(30, 64, 175, 0.15),
        0 0 0 4px rgba(147, 197, 253, 0.3);
}

.btn-reset:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* ============================================ */
/* Botón Exportar PDF (Verde) */
/* ============================================ */

.btn-descargar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.25),
        0 4px 12px rgba(21, 128, 61, 0.15);

    /* Gradiente principal en verdes */
    background: linear-gradient(135deg,
            #15803d 0%,
            #16a34a 25%,
            #22c55e 50%,
            #4ade80 75%,
            #86efac 100%);

    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-width: 160px;
    z-index: 10;
}

/* Efecto de brillo para PDF */
.btn-descargar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

/* Efecto hover para PDF */
.btn-descargar:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.4),
        0 8px 25px rgba(21, 128, 61, 0.3),
        0 0 0 3px rgba(134, 239, 172, 0.2);

    background: linear-gradient(135deg,
            #15803d 0%,
            #16a34a 25%,
            #22c55e 50%,
            #4ade80 75%,
            #86efac 100%);
}

.btn-descargar:hover::before {
    left: 100%;
}

/* Efecto active/click para PDF */
.btn-descargar:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3),
        0 4px 12px rgba(21, 128, 61, 0.2);
}

/* Icono para PDF */
.btn-descargar i {
    margin-right: 8px;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Estados especiales para PDF */
.btn-descargar:focus {
    outline: none;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.25),
        0 4px 12px rgba(21, 128, 61, 0.15),
        0 0 0 4px rgba(134, 239, 172, 0.3);
}

.btn-descargar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

/* ============================================ */
/* Responsive Design para ambos botones */
/* ============================================ */

@media (max-width: 768px) {
    .boton-container {
        gap: 12px;
    }

    .btn-reset,
    .btn-descargar {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 140px;
        border-radius: 40px;
    }

    .btn-reset i,
    .btn-descargar i {
        font-size: 1.1rem;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .boton-container {
        gap: 10px;
    }

    .btn-reset,
    .btn-descargar {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 120px;
        letter-spacing: 0.5px;
    }

    .btn-reset:hover,
    .btn-descargar:hover {
        transform: translateY(-2px) scale(1.03);
    }
}

@media (max-width: 320px) {
    .btn-reset,
    .btn-descargar {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 100px;
    }
}

/* Animaciones de entrada */
.btn-reset.mostrar,
.btn-descargar.mostrar {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


 /* FOOTER */
 .custom-footer {
     background-color: var(--primary-blue);
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 12px 0;
     /* más alto el footer */
     z-index: 1000;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
 }

 .footer-text {

     color: white;
     font-weight: 700;
     margin: 0;
     text-align: center;
     padding: 0 16px;
     /* espacio lateral */
     line-height: 1.6;
     font-size: clamp(1rem, 2vw, 1.2rem);
     /* más grande */
 }

 .file-date {
     font-size: 14px;
     color: #64748b;
     font-weight: 500;
 }

 .archive-grid {
     display: grid;
     gap: 40px;
     padding: 10px;

 }

 .archive-item {
     background: white;
     border-radius: 12px;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
     border: 1px solid #e2e8f0;
     overflow: hidden;
     transition: all 0.2s ease;

 }

 .archive-item:hover {
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     border-color: #cbd5e1;
 }

 .archive-header {
     padding: 24px 24px 16px;
     border-bottom: 1px solid #f1f5f9;
 }

 .file-info {
     display: flex;
     align-items: flex-start;
     gap: 16px;

 }

 .file-icon {
     width: 48px;
     height: 48px;
     background: #3b82f6;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 20px;
     flex-shrink: 0;
 }

 .file-details {
     flex: 1;
     min-width: 0;
 }

 .file-name {
     font-size: 14px;
     color: #475569;
     word-break: break-all;
     background: #f8fafc;
     padding: 8px 12px;
     border-radius: 6px;
     margin-bottom: 8px;
     width: 100%;
     /* Ocupa todo el ancho posible */
     display: block;
 }

 .file-date {
     font-size: 14px;
     color: #64748b;
     font-weight: 500;
 }

 .metrics-section {
     padding: 24px;
 }

 .metrics-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 16px;
     margin-bottom: 20px;
 }

 .metric-item {
     text-align: center;
     padding: 16px;
     border-radius: 8px;
     background: #f8fafc;
     border: 1px solid #e2e8f0;
 }

 .metric-label {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: #64748b;
     margin-bottom: 4px;
     font-weight: 500;
 }

 .metric-value {
     font-size: 20px;
     font-weight: 600;
     color: #0f172a;
 }

 .compras {
     border-left: 4px solid #f59e0b;
 }

 .ventas {
     border-left: 4px solid #10b981;
 }

 .importe {
     border-left: 4px solid #8b5cf6;
 }


 .status-alert-message {

     border: 1px solid #ffffff;
     border-radius: 8px;
     padding: 16px;
     display: flex;
     align-items: center;
     gap: 12px;
     color: #656463;
     font-weight: 500;
 }

 .status-alert-message em {
     font-style: italic;
     color: #6b7280;
 }

 @media (max-width: 768px) {
     .metrics-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 12px;
     }

     .file-info {
         flex-direction: column;
         gap: 12px;
     }
 }

