/* RedDust — Custom Styles */

/* Wizard step progress bar */
.wizard-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.wizard-step {
    display: flex;
    align-items: center;
}

.wizard-step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 2px solid #2a2a3e;
    background: #1a1a2e;
    color: #9ca3af;
}

.wizard-step-circle.active {
    border-color: #dc2626;
    background: #dc2626;
    color: white;
}

.wizard-step-circle.completed {
    border-color: #22c55e;
    background: #22c55e;
    color: white;
}

.wizard-step-line {
    width: 3rem;
    height: 2px;
    background: #2a2a3e;
    transition: background 0.3s ease;
}

.wizard-step-line.completed {
    background: #22c55e;
}

/* Fade transition for wizard content */
.wizard-content {
    animation: fadeIn 0.3s ease;
}

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

/* Success checkmark animation */
@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-icon {
    animation: scaleIn 0.4s ease;
}

/* Status badges */
.badge-published { background: #166534; color: #86efac; }
.badge-draft { background: #1e3a5f; color: #93c5fd; }
.badge-scheduled { background: #713f12; color: #fde68a; }
.badge-failed { background: #7f1d1d; color: #fca5a5; }

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f0f1a;
}
::-webkit-scrollbar-thumb {
    background: #2a2a3e;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3a3a4e;
}
