/* Custom Select2 Styling to match form-control */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    height: 33px !important;
    width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 31px !important;
    color: #495057 !important;
    padding-left: 12px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 31px !important;
}
.select2-container {
    width: 100% !important;
}

/* Journey Timeline Styling */
.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
    margin-left: 10px;
}
.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: #e3e3e3;
}
.timeline > li {
    position: relative;
    margin-bottom: 15px;
    clear: both;
}
.timeline > li:last-child {
    margin-bottom: 0;
}
.timeline > li .timeline-panel {
    position: relative;
    width: calc(100% - 55px);
    margin-left: 55px;
    padding: 15px;
    border: 1px solid #d4d4d4;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}
.timeline > li .timeline-badge {
    position: absolute;
    top: 20px;
    left: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #999;
    z-index: 10;
    border: 3px solid #fff;
}
.timeline > li.current .timeline-panel {
    border-color: #663399;
    background: #f8f6fb;
}
.timeline > li.current .timeline-badge {
    background-color: #663399;
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(102, 51, 153, 0.1);
}
.timeline > li.completed .timeline-badge { background-color: #28a745; }
.timeline > li.ongoing .timeline-badge { background-color: #17a2b8; }

.timeline-title { margin-top: 0; color: #333; font-size: 15px; font-weight: 700; }
.timeline-body > p { margin-bottom: 0; font-size: 13px; color: #555; line-height: 1.5; }