.smileup-wizard {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 20px auto;
    font-family: inherit;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.wizard-progress .step {
    background: #fff;
    border: 2px solid #eee;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
    color: #999;
}

.wizard-progress .step.active {
    border-color: #0073aa;
    color: #0073aa;
    font-weight: bold;
}

.wizard-step {
    display: none;
}

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

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

.wizard-step h3 {
    margin-top: 0;
    color: #333;
}

.field-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.smileup-wizard input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.wizard-nav button {
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    border: none;
}

.next-step {
    background: #0073aa;
    color: #fff;
    margin-left: auto;
}

.next-step:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.prev-step {
    background: #f5f5f5;
    color: #666;
}

.slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.slot {
    padding: 10px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.slot:hover {
    background: #f0f8ff;
    border-color: #0073aa;
}

.slot.selected {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

#wizard-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
}
