:root {
    --primary-blue: #1e3a8a;
    --accent-blue: #2563eb;
    --light-blue: #eff6ff;
    --success-green: #10b981;
    --warning-amber: #f59e0b;
    --danger-red: #ef4444;
    --dark-slate: #0f172a;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    min-height: 100vh;
}

/* Navbar */
.navbar-corporate {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.brand-badge {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Step Wizard */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 3px;
    background-color: #e2e8f0;
    transform: translateY(-50%);
    z-index: 1;
}

.wizard-step {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.wizard-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #64748b;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.wizard-step.active .wizard-step-circle {
    background-color: var(--accent-blue);
    color: #ffffff;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.2);
}

.wizard-step.completed .wizard-step-circle {
    background-color: var(--success-green);
    color: #ffffff;
    border-color: var(--success-green);
}

.wizard-step-title {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.wizard-step.active .wizard-step-title {
    color: var(--accent-blue);
}

/* Cards & UI Elements */
.card-custom {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.service-card {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.service-card:hover {
    border-color: #93c5fd;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.08);
}

.service-card.selected {
    border-color: var(--accent-blue);
    background-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.dropzone-box {
    border: 2px dashed #94a3b8;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    background-color: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropzone-box:hover, .dropzone-box.dragover {
    border-color: var(--accent-blue);
    background-color: var(--light-blue);
}

/* Mode Selection Tabs */
.mode-pill {
    padding: 12px 18px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.mode-pill.active {
    border-color: var(--accent-blue);
    background-color: var(--light-blue);
    color: var(--accent-blue);
}

/* Terminal Log */
.terminal-window {
    background-color: #0f172a;
    color: #f8fafc;
    border-radius: 10px;
    padding: 1rem;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.85rem;
    height: 320px;
    overflow-y: auto;
    border: 1px solid #1e293b;
}

.terminal-line {
    margin-bottom: 4px;
    line-height: 1.4;
    word-break: break-all;
}

.terminal-line .timestamp {
    color: #64748b;
    margin-right: 6px;
}

.terminal-line.INFO { color: #38bdf8; }
.terminal-line.SUCCESS { color: #4ade80; }
.terminal-line.WARNING { color: #facc15; }
.terminal-line.ERROR { color: #f87171; }

/* KPI Stats Box */
.kpi-card {
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.kpi-value {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Table styles */
.table-matrix {
    font-size: 0.88rem;
}

.table-matrix th {
    background-color: #f1f5f9;
    color: #475569;
    font-weight: 600;
}
