/* Wizard Step Indicator */
.wizard-steps {
    padding: 1rem 0;
}

.wizard-step {
    min-width: 70px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.wizard-step.active .step-circle {
    background-color: var(--bs-primary, #1a3a5c);
    color: #fff;
}

.wizard-step.completed .step-circle {
    background-color: #198754;
    color: #fff;
}

.step-connector hr {
    border-width: 2px;
}

.step-connector hr.border-success {
    border-color: #198754 !important;
}

/* Athlete Cards */
.athlete-card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #fff;
    position: relative;
}

.athlete-card .athlete-number {
    position: absolute;
    top: -12px;
    left: 12px;
    background: var(--bs-primary, #1a3a5c);
    color: #fff;
    padding: 0.1rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.athlete-card .btn-remove-athlete {
    position: absolute;
    top: 8px;
    right: 8px;
}

/* Summary Table */
.summary-section {
    background: var(--color-secondary, #f0f0f0);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.summary-label {
    font-weight: 500;
    color: #555;
}
