/*
	Custom CSS
	Please make sure your CSS rules are 
	more particular / have higher priority
	then other page styles
*/
 #events h3   {
	/* add your css rule here */
}


 #events p.duration, #events div.duration   {
	/* add your css rule here */
}


 #events p.description, #events div.description   {
	/* add your css rule here */
}


 #events .selectedEvent   {
	/* add your css rule here */
}


 #events input.reserve_time_btn   {
	/* add your css rule here */
}


 #events input.select_another_btn   {
	/* add your css rule here */
}


 #eventForm #start_date-block-container h3, #eventForm #timeline-container h3   {
	/* add your css rule here */
}


 #eventForm #save_button   {
	/* add your css rule here */
}


 div.ui-widget-content   {
	/* add your css rule here */
}


 div.ui-widget-header   {
	/* add your css rule here */
}


 #timeline-container table.timeline   {
	/* add your css rule here */
}


 .timeline td.not_worked_time   {
	/* add your css rule here */
}


 .timeline td.free_time   {
	/* add your css rule here */
}


 .timeline td.selected_time   {
	/* add your css rule here */
}


 .timeline td.reserved_time   {
	/* add your css rule here */
}


 div#loading   {
	/* add your css rule here */
}


 #start_date-block-container .zend_form dt, start_date-block-container .zend_form dt b, start_date-block-container .zend_form dd label   {
	/* add your css rule here */
}



/* ===== Weekly calendar - nicer styling (added by Claude) ===== */

.row-eq-height {
	align-items: center;
	margin-bottom: 6px;
}
#sb_prev_date, #sb_next_date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 20px;
	color: #3770C0;
	font-weight: 600;
	transition: background .15s ease;
	cursor: pointer;
}
#sb_prev_date:hover, #sb_next_date:hover {
	background: #eef3fb;
}

.datepicker-button .btn-link {
	display: inline-block;
	background: #3770C0;
	border-radius: 24px;
	padding: 8px 24px;
	font-weight: 600;
	letter-spacing: .02em;
	text-decoration: none !important;
	box-shadow: 0 2px 8px rgba(55,112,192,.25);
	transition: all .15s ease;
}
.datepicker-button .btn-link:hover {
	box-shadow: 0 4px 12px rgba(55,112,192,.35);
	text-decoration: none !important;
}
.datepicker-button .btn-link,
.datepicker-button .btn-link * {
	text-decoration: none !important;
	color: #ffffff !important;
}

.day-container {
	background: #f4f8fd;
	border-radius: 14px 14px 0 0;
	padding: 12px 4px 14px;
	margin-bottom: 4px;
}
.day-container .date {
	color: #8a94a6;
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-weight: 600;
}
.day-container .day {
	color: #1f2a44;
	font-weight: 700;
	font-size: 17px;
	margin-top: 3px;
}
.day-container .border {
	display: none;
}

.time-slot .cell.sb-cell {
	border-radius: 20px !important;
	border: 1px solid #d7e2f4 !important;
	font-weight: 500;
	transition: all .15s ease;
}
.time-slot.free .cell.sb-cell {
	color: #3770C0;
}
.time-slot.free .cell.sb-cell:hover {
	background: #3770C0 !important;
	color: #ffffff !important;
	border-color: #3770C0 !important;
	box-shadow: 0 3px 10px rgba(55,112,192,.3);
	cursor: pointer;
}
.time-slot.busy .cell.sb-cell {
	opacity: .3;
}


/* ===== Hide the divider line between the date and weekday in the weekly view (added by Claude) ===== */
.data-col { position: relative; }
.data-col::after {
	content: "";
	position: absolute;
	left: -8px;
	right: -8px;
	top: 69px;
	height: 8px;
	background: #f4f8fd;
	z-index: 999;
	pointer-events: none;
}
