/* Fix for Back buttons - ensure they have visible background by default */
#back-to-step1-btn,
#back-to-step2-btn {
    background-color: #e5e7eb !important;
    border: 2px solid #9ca3af !important;
    color: #1f2937 !important;
}

#back-to-step1-btn:hover,
#back-to-step2-btn:hover {
    background-color: #d1d5db !important;
    border-color: #6b7280 !important;
}

/* Drag & Drop Styles for Step 3 Timeline */
.stage-item {
    cursor: grab;
    transition: all 0.2s ease;
}

.stage-item:active {
    cursor: grabbing;
}

.sortable-ghost {
    opacity: 0.4;
    background-color: #f1f5f9 !important;
    border: 2px dashed #94a3b8 !important;
}

.sortable-chosen {
    background-color: #e0e7ff !important;
    border-color: #6366f1 !important;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.sortable-drag {
    opacity: 0.8;
    transform: rotate(2deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
