/*
	Custom CSS
	Please make sure your CSS rules are 
	more particular / have higher priority
	than other page styles
*/

@font-face {
    font-family: 'Futura Lt BT Light';
    src: url('fonts/FuturaLtBT-Light.woff2') format('woff2'),
         url('fonts/FuturaLtBT-Light.woff') format('woff'),
         url('fonts/FuturaLtBT-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply the font to the entire body of the page */
body {
    font-family: 'Futura Lt BT Light', sans-serif;
    /* Add any additional styling here */
}
/* Custom CSS to change the arrows in the booking calendar */



.ui-datepicker-next:before {
    content: '\2192'; /* Right arrow (Unicode) */
    font-size: 18px;
    color: black !important; /* Ensures the arrow is black */
}

/* The following sections inherit the font from the body */
#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


