2026-05-12 17:33:59 -08:00
|
|
|
#riverside-calendar {
|
|
|
|
|
max-width: 480px;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-booking-backdrop {
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
background: rgba(0, 0, 0, 0.45);
|
|
|
|
|
z-index: 999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-booking-panel {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
width: 90%;
|
|
|
|
|
max-width: 340px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e5e7eb;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.riverside-booking-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-booking-close {
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
padding: 0;
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-booking-slots {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-booking-slots li {
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
border: 1px solid #3b82f6;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
color: #1d4ed8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-booking-slots li:hover {
|
|
|
|
|
background: #eff6ff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-calendar .fc-more-popover {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-calendar .is-holiday .fc-more-link {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-calendar .fc-day-other .riverside-holiday-label,
|
|
|
|
|
#riverside-calendar .fc-day-other .fc-more-link {
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#riverside-calendar .riverside-holiday-label {
|
2026-05-13 20:14:57 -08:00
|
|
|
overflow-wrap: break-word;
|
2026-05-13 13:55:52 -08:00
|
|
|
line-height: 1;
|
2026-05-12 17:33:59 -08:00
|
|
|
font-size: 0.65rem;
|
|
|
|
|
color: #b45309;
|
|
|
|
|
text-align: center;
|
2026-05-13 20:14:57 -08:00
|
|
|
padding: 2px;
|
2026-05-12 17:33:59 -08:00
|
|
|
}
|