/* Custom styles beyond Tailwind */

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.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;
    background-color: #e5e7eb;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.step-indicator.active .step-circle {
    background-color: #2563eb;
    color: white;
}

.step-label {
    font-size: 0.75rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.step-indicator.active .step-label {
    color: #2563eb;
    font-weight: 500;
}

.step-connector {
    width: 4rem;
    height: 2px;
    background-color: #e5e7eb;
    margin-bottom: 1.25rem;
}

.preview-tab.active {
    color: #2563eb;
    border-color: #2563eb;
}

/* Scrollbar styling */
.max-h-\[60vh\]::-webkit-scrollbar,
.max-h-\[50vh\]::-webkit-scrollbar {
    width: 6px;
}

.max-h-\[60vh\]::-webkit-scrollbar-thumb,
.max-h-\[50vh\]::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 3px;
}

.max-h-\[60vh\]::-webkit-scrollbar-thumb:hover,
.max-h-\[50vh\]::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
}
