1. Hide the Booking Buttons
Patients shouldn't see "Book now" on a TV.

Field: #events input.reserve_time_btn

CSS: display: none !important;

2. Make the Time and Patient Codes Huge
This ensures people can see their turn from across the waiting room.

Field: #events h3

CSS: font-size: 3rem !important; color: #f8ad31; font-weight: bold; text-align: center;

3. Style the "Reserved" (Current Patient) Slots
In SimplyBook.me, reserved_time represents slots that are taken. We want these to stand out as the "Active" queue.

Field: .timeline td.reserved_time

CSS: background-color: #fc591e !important; color: #ffffff; font-size: 1.5rem; border: 2px solid #ffffff;

4. Dark Mode for the Board
A dark background looks more professional on a TV and reduces eye strain.

Field: div.ui-widget-content

CSS: background-color: #1a1a2e !important; color: #ffffff !important; border: none;

5. Clean up the Header

Field: div.ui-widget-header

CSS: background: #cb8d75 !important; color: white !important; font-size: 1.8rem;
.form-group.form-client-email { display: none !important; }
