/* Tab Indicator */
.tab-indicator {
    position: absolute;
    bottom: -1px;
    height: 2px;
    width: 50%;
    background-color: #1e40af;
    transition: transform 0.3s ease-in-out;
}

/* Smooth Progress Bar */
.progress-bar {
    height: 3px;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    transition: width 0.3s ease-in-out;
}

/* Step Selection Indicator */
.selected-step {
    border: 2px solid #2563eb;
    border-radius: 6px;
    background-color: #f8fafc;
    transition: border-color 0.3s ease-in-out, background-color 0.2s ease-in-out;
}
