/* Custom styles for Home/Index */

/* Mobile-first vertical scroll for Travel Lines table */
@media (max-width: 576px) {
    .travel-lines-table-wrapper {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* Optional: keep table headers sticky on small screens for better readability */
@media (max-width: 576px) {
    #travelLinesTable thead th {
        position: sticky;
        top: 0;
        background-color: #f8f9fa; /* matches .table-light */
        z-index: 1;
    }
}

.clickable-row {
    cursor: pointer;
}

/* Vertical separators for Travel Line table columns */
#travelLinesTable th,
#travelLinesTable td,
#editTravelLinesTable th,
#editTravelLinesTable td {
    border-right: 1px solid #dee2e6;
}

#travelLinesTable th:last-child,
#travelLinesTable td:last-child,
#editTravelLinesTable th:last-child,
#editTravelLinesTable td:last-child {
    border-right: 0;
}

/* Home/Index: Quick Search modal responsive input group */
@media (max-width: 576px) {
    #quickSearchModal .input-group {
        flex-wrap: wrap;
    }
    #quickSearchModal .input-group > .btn {
        width: 100%;
        margin-top: 8px;
    }
}

button[disabled="disabled"],
button:disabled,
button[disabled],
button:disabled:hover,
button[disabled]:hover,
button:disabled img
button[disabled] img {
    cursor: not-allowed;
}