/* Service titles */
#events h3 {
    font-family: 'Lato', sans-serif;
    color: #002b5c;
    font-weight: 700;
}

/* Duration labels */
#events p.duration, #events div.duration {
    font-family: 'Lato', sans-serif;
    color: #333;
    font-size: 14px;
}

/* Descriptions */
#events p.description, #events div.description {
    font-family: 'Lato', sans-serif;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

/* Selected service block styling */
#events .selectedEvent {
    border: 2px solid #002b5c;
    background-color: #f7f9fb;
    border-radius: 8px;
    padding: 12px;
}

/* Main booking button */
#events input.reserve_time_btn {
    background-color: #002b5c;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#events input.reserve_time_btn:hover {
    background-color: #021e3f;
}

/* 'Select another' button */
#events input.select_another_btn {
    background-color: transparent;
    border: 1px solid #002b5c;
    color: #002b5c;
    font-family: 'Lato', sans-serif;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.3s ease;
}

#events input.select_another_btn:hover {
    background-color: #002b5c;
    color: #fff;
}

/* Booking step headings */
#eventForm #start_date-block-container h3, #eventForm #timeline-container h3 {
    font-family: 'Lato', sans-serif;
    color: #002b5c;
    font-weight: bold;
}

/* Final submit button */
#eventForm #save_button {
    background-color: #002b5c;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

#eventForm #save_button:hover {
    background-color: #021e3f;
}

/* General content background */
div.ui-widget-content {
    background-color: #ffffff;
    color: #333;
    font-family: 'Lato', sans-serif;
}

/* Header bar (calendar) */
div.ui-widget-header {
    background-color: #002b5c;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
}

/* Booking table */
#timeline-container table.timeline {
    border-collapse: collapse;
    width: 100%;
    font-family: 'Lato', sans-serif;
}

/* Non-working time */
.timeline td.not_worked_time {
    background-color: #f0f0f0;
}

/* Free time slots */
.timeline td.free_time {
    background-color: #e6e9ef !important;
}

/* Selected time slot */
.timeline td.selected_time {
    background-color: #002b5c !important;
    color: #ffffff;
}

/* Reserved slots */
.timeline td.reserved_time {
    background-color: #cccccc !important;
}

/* Loading screen */
div#loading {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #002b5c;
}

/* Form label text */
#start_date-block-container .zend_form dt,
#start_date-block-container .zend_form dt b,
#start_date-block-container .zend_form dd label {
    font-family: 'Lato', sans-serif;
    color: #333;
}



