/* Estilos específicos para Ciberanálisis */

#cyber-content {
    width: 95%;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.upload-box {
    text-align: center;
    padding: 2rem;
}

.upload-box h3 {
    color: #f5c842;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.file-status {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Botones de acción */
.actions-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.analyze-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.analyze-btn.local {
    background: #1cb495;
    color: #000;
}

.analyze-btn.cloud {
    background: #3498db;
    color: #fff;
}

.analyze-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* KPI Cards especializadas */
.border-red {
    border-top: 3px solid #ff3e4d !important;
}

.border-orange {
    border-top: 3px solid #f5c842 !important;
}

.border-teal {
    border-top: 3px solid #1cb495 !important;
}

.icon-bg {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 3rem;
    opacity: 0.1;
}

/* Terminal IA (reutilizado de rutas) */
.ai-terminal {
    background: rgba(10, 10, 10, 0.9);
    border-left: 4px solid #f5c842;
}

.ai-header-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    font-family: monospace;
    color: #f5c842;
    font-size: 0.8rem;
}

.ai-content-text {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    color: #e0e0e0;
    line-height: 1.5;
}