/**
 * Queue Number Generator - Hide Time Slots CSS
 * 
 * This file hides all time slots except the first one when queue generation is enabled.
 * This ensures customers can only book the first available slot, which is useful for
 * queue-based appointment systems.
 * 
 * To disable this feature, simply remove or comment out the CSS rule below.
 */

.booknetic_time_element:not(:first-child) {
    display: none !important;
}
