/* Wizard Steps Component Styles */

.wizard-steps-container {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.wizard-steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 20px;
    margin-bottom: 0;
    flex-wrap: wrap;
    animation: fadeIn 0.5s ease;
    width: 100%;
    box-sizing: border-box;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wizard-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.wizard-step.active {
    background: rgba(46, 204, 113, 0.3);
    border: 2px solid #2ecc71;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

.wizard-step.completed {
    background: rgba(46, 204, 113, 0.5);
    border: 2px solid #2ecc71;
}

.wizard-step-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wizard-step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    color: #1e3c72;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wizard-step.completed .wizard-step-circle {
    background: #2ecc71;
    color: white;
}

.wizard-step.active .wizard-step-circle {
    animation: pulse 2s infinite;
}

.wizard-step-label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.wizard-step-divider {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.wizard-step:hover ~ .wizard-step-divider,
.wizard-step-divider:hover {
    background: rgba(255, 255, 255, 0.5);
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wizard-steps-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }

    .wizard-step {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .wizard-step-divider {
        display: none;
    }

    .wizard-step-label {
        font-size: 13px;
    }

    .wizard-step-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .wizard-steps-wrapper {
        gap: 0.25rem;
    }

    .wizard-step {
        padding: 0.5rem 0.75rem;
        font-size: 12px;
    }

    .wizard-step-label {
        display: none;
    }

    .wizard-step-circle {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}

/* Dark Theme Support */
[data-theme="dark"] .wizard-step {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .wizard-step:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .wizard-step-circle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

[data-theme="dark"] .wizard-step.completed .wizard-step-circle {
    background: #2ecc71;
}

[data-theme="dark"] .wizard-step-divider {
    background: rgba(255, 255, 255, 0.2);
}
