/* Mobile Touch Disabled for Range Sliders */
.mobile-touch-disabled {
    pointer-events: none;
}

/* Re-enable pointer events for the thumb only */
.mobile-touch-disabled::-webkit-slider-thumb {
    pointer-events: auto;
}

.mobile-touch-disabled::-moz-range-thumb {
    pointer-events: auto;
}

/* Ticket Search Layout */
.ticket-search-row {
    display: flex;
    gap: 15px;
    align-items: end;
}

.ticket-search-input {
    flex: 1;
}

.ticket-search-button {
    flex: 1;
}

.ticket-search-button button {
    width: 100%;
}

.name-search-row {
    margin-top: 15px;
}

/* Disabled input styling */
#ticketNumber:disabled,
#userName:disabled {
    background-color: #dcdcdc !important;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Disabled search button styling */
#searchBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Clear button styling - grey colors */
#searchBtn.clear-mode {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

#searchBtn.clear-mode:hover {
    background-color: #5a6268 !important;
    border-color: #545b62 !important;
}
