/* ==========================================================================
   DIAGNOSTICS VIEW - ProxWide
   ========================================================================== */

/* Diagnostics container */
.diagnostics-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Diagnostic step cards */
.diag-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    transition: border-color var(--trans-fast);
}

.diag-step.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.diag-step.completed {
    border-color: var(--success);
}

.diag-step-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.diag-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--text-main);
}

.diag-step.active .diag-step-number {
    background: var(--primary);
    color: white;
}

.diag-step.completed .diag-step-number {
    background: var(--success);
    color: white;
}

.diag-step-title {
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--text-main);
}

.diag-step-content {
    padding-left: 48px;
}

.diag-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

/* Progress indicator */
.diag-progress {
    background: var(--bg-body);
    border-radius: var(--radius-full);
    height: 8px;
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.diag-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    transition: width 0.3s ease;
}