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

.wizard-progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.wizard-progress-fill {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 25%;
}

.wizard-step-counter {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

.wizard-step {
    animation: fadeIn 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.wizard-buttons--two-col {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-option-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 20px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.wizard-option-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.wizard-option-btn.selected {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.wizard-icon {
    font-size: 32px;
    font-style: normal;
}

.wizard-back-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 10px;
    margin-top: 20px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.wizard-back-btn:hover {
    color: #ffffff;
}

@media (max-width: 480px) {
    .wizard-buttons {
        grid-template-columns: 1fr;
    }

    .wizard-option-btn {
        padding: 15px;
    }
}

/* Wizard Main Header */
.wizard-main-header {
    text-align: center;
    margin-bottom: 20px;
}

.wizard-main-header h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* Wide button variant for single column layout */
.wizard-option-btn--wide {
    grid-column: 1 / -1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (max-width: 480px) {
    .wizard-main-header h2 {
        font-size: 20px;
    }
}

/* Post-signup question styles */
.post-signup-container {
    text-align: center;
    padding: 20px 0;
}

.post-signup-success {
    margin-bottom: 30px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.post-signup-success h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.post-signup-question {
    margin-bottom: 30px;
}

.post-signup-question p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.post-signup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.btn--secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 480px) {
    .post-signup-success h3 {
        font-size: 20px;
    }

    .post-signup-question p {
        font-size: 16px;
    }
}