@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source "../**/*.blade.php";
@source "../**/*.js";
@source "../**/*.vue";

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

.flight-timeline {
    position: relative;
    width: 100%;
    margin: 15px 0;
}

.timeline-container {
    position: relative;
    width: 100%;
    height: 40px;
}

.hour-markers {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 25px;
}

.hour-mark {
    position: absolute;
    width: 1px;
    height: 30px;
}

.hour-mark span {
    position: absolute;
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    transform: translateX(-50%);
    top: 0;
}

.hour-mark::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 11px;
    background-color: #ccc;
    bottom: -14px;
    left: 0;
}
/* .hour-mark:nth-child(2):after {
    width: 3px;
} */

.plus-mark {
    width: auto;
}

.plus-mark::after {
    display: none;
}

.progress-track {
    position: absolute;
    height: 2px;
    background-color: #e0e0e0;
    bottom: 0;
    left: 0;
    right: 0;
}

.progress-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #20c9f5;
    bottom: -4px;
    transform: translateX(-50%);
    z-index: 2;
}

.start-dot {
    left: 0;
}

.end-dot {
    /* Will be set dynamically via JavaScript */
}

.progress-line {
    position: absolute;
    height: 2px;
    background-color: #20c9f5;
    bottom: 0;
    left: 0;
    z-index: 1;
    /* Width will be set dynamically via JavaScript */
}

.duration-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.flight-duration {
    font-size: 14px;
    color: #20c9f5;
    font-weight: 500;
}

.flight-stops {
    position: relative;
    padding-left: 12px;
    font-size: 14px;
    color: #666;
}

.flight-stops:before {
    content: '/';
    position: absolute;
    left: 2px;
    color: #ccc;
}
.highlighted-hour-mark::after {
    background-color: #20c9f5; /* New color */
}

.Departure {
margin-right: 20px !important;
}
.Arrival {
margin-left: 20px !important;
}