body {
    background-color: var(--bg-light);
}

.simulation-container {
    max-width: 800px;
    margin: 0 auto;
}

.simulation-step {
    display: none;
    text-align: center;
    background-color: var(--bg-primary);
    padding: 4rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.simulation-step.active {
    display: block;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
    text-align: left;
    margin-top: 3rem;
}

.timeline-item {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    border-left: 3px solid var(--glass-stroke);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -11px; /* (20px / 2) - 3px */
    top: 1.2rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid var(--bg-primary);
}

.timeline-item.finding::before {
    background-color: #f59e0b; /* Amarillo */
}
.timeline-item.finding.major::before {
    background-color: #ef4444; /* Rojo */
}

.timeline-time {
    font-weight: 600;
    color: var(--text-primary);
}

/* Reporte */
.report-card {
    background-color: var(--bg-light);
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: left;
    margin-top: 1.5rem;
}

.report-card h5 {
    font-weight: 600;
}

/* Plan de Acción */
.action-plan-table {
    margin-top: 2rem;
    text-align: left;
}

.action-plan-table th {
    background-color: var(--bg-light);
}

.bg-danger-light {
    background-color: rgba(239, 68, 68, 0.1);
}

.text-danger {
    color: #dc3545 !important;
}

.bg-warning-light {
    background-color: rgba(245, 158, 11, 0.1);
}

.text-warning {
    color: #ffc107 !important;
}
