/* Speed Comparison Styles - Light Theme */

.speed-comparison-container {
    background: transparent;
    padding: 0;
}

.speed-comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.speed-method {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-subtle);
}

.method-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.speed-bar-wrapper {
    background: var(--border-default);
    border-radius: 4px;
    height: 12px;
    overflow: hidden;
}

.speed-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
}

.speed-bar.viewpoints {
    background: linear-gradient(90deg, var(--accent-primary), #6366F1);
}

.speed-bar.traditional {
    background: var(--text-subtle);
}

.time-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 80px;
    text-align: right;
}

.speed-metric {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.speed-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.speed-unit {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.multiplier-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 8px;
    padding: 4px 8px;
    margin-left: 8px;
}

.multiplier-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.multiplier-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Simple loading progress styles */
.simple-progress-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.simple-progress-bar-container {
    height: 6px;
    background: var(--border-default);
    border-radius: 3px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.simple-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), #6366F1);
    border-radius: 3px;
    transition: width 0.5s ease-out;
    width: 0;
}

.simple-progress-text {
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.simple-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
}

.simple-stage {
    color: var(--text-subtle);
    transition: color 0.3s ease;
}

.simple-stage.completed {
    color: #10b981;
}

.simple-stage.active {
    color: var(--accent-primary);
    font-weight: 600;
}

.simple-stage-arrow {
    color: var(--text-subtle);
    font-size: 0.65rem;
}
