/* Wizard Styles */
.wizard-progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
    padding: 0 1rem;
}
.wizard-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.wizard-progress-step .step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #6c757d;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid #e9ecef;
}
.wizard-progress-step.active .step-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.wizard-progress-step.completed .step-circle {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}
.wizard-progress-step .step-label {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
}
.wizard-progress-step.active .step-label {
    color: #667eea;
    font-weight: 700;
}
#wizard-progress-bar {
    transition: width 0.5s ease;
}
.wizard-step {
    display: none;
}
.wizard-step .form-floating label {
    color: #6c757d;
}
.wizard-step .form-control:focus,
.wizard-step .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.wiz-upload-area {
    border: 2px dashed #667eea;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.03);
}
.wiz-upload-area:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: #764ba2;
}
.tag-check-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    margin: 0.2rem;
}
.tag-check-label:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}
.wiz-tag-check:checked + .tag-check-label,
.wiz-cat-check:checked + .tag-check-label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}
.wiz-tag-check,
.wiz-cat-check {
    display: none;
}
