/**
 * Booking Styles — สไตล์ที่ใช้ร่วมกันในหน้าจองบริการ
 * (ห้องประชุม, ห้องเรียน, รถของคณะ)
 */

/* Gallery Thumbnail */
.gallery-thumb {
    transition: all .2s ease;
    cursor: pointer;
}
.gallery-thumb:hover {
    opacity: .8;
}

/* Time Bar Slots */
.time-bar-slot {
    height: 24px;
    display: inline-block;
    transition: background .2s;
}
.time-bar-slot.available {
    background: #e2e8f0;
}
.time-bar-slot.occupied {
    background: #8b5cf6;
}
.time-bar-slot.passed {
    background: #94a3b8;
}

/* Signature Canvas */
.sig-canvas {
    border: 2px dashed #cbd5e1;
    border-radius: .75rem;
    cursor: crosshair;
    touch-action: none;
}

/* Field Validation Error */
.field-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 1px #ef4444 !important;
}
