/* Wizard Styles */
.wizard-progress {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    width: 16.66%; /* Step 1 of 6 */
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

.step-content {
    max-width: 700px;
    margin: 0 auto;
}

.step-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.instruction-box {
    background: #f9fafb;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.instruction-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.instruction-list {
    margin: 15px 0;
    padding-left: 25px;
}

.instruction-list li {
    margin: 10px 0;
    line-height: 1.6;
}

.instruction-list li strong {
    color: #667eea;
}

.btn-large {
    width: 100%;
    font-size: 18px;
    padding: 18px;
    margin-top: 20px;
}

.dtmf-instructions {
    background: #fef3c7;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

.dtmf-instructions p {
    margin: 5px 0;
}

.dtmf-instructions strong {
    color: #333;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #e5e7eb;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .step-content h2 {
        font-size: 20px;
    }

    .instruction-box {
        padding: 15px;
    }

    .instruction-list {
        padding-left: 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 16px;
        font-size: 16px;
    }

    .wizard-progress {
        margin-bottom: 20px;
    }
}

/* Ensure visibility */
#wizardSection {
    width: 100%;
}

#wizardSection.hidden {
    display: none;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}
