/* === SYISKIN STYLING === */

/* Titre des événements */
#events h3 {
	color: #3C2F1B; /* brun foncé */
	font-weight: bold;
	font-family: 'Georgia', serif;
}

/* Durée et description des événements */
#events p.duration,
#events div.duration,
#events p.description,
#events div.description {
	color: #474747;
	font-size: 14px;
}

/* Événement sélectionné */
#events .selectedEvent {
	background-color: #EBDDDE; /* rose très pâle */
	border: 2px solid #A63D2F; /* terracotta */
	border-radius: 10px;
	padding: 10px;
}

/* Bouton de réservation */
#events input.reserve_time_btn {
	background-color: #A63D2F;
	color: white;
	border: none;
	padding: 10px 16px;
	border-radius: 20px;
	cursor: pointer;
	font-weight: bold;
	transition: 0.3s;
}
#events input.reserve_time_btn:hover {
	background-color: #3C2F1B; /* brun foncé */
}

/* Bouton 'sélectionner un autre' */
#events input.select_another_btn {
	background-color: #C7B3B3;
	color: #3C2F1B;
	border: none;
	padding: 10px 16px;
	border-radius: 20px;
	cursor: pointer;
	font-weight: bold;
}

/* Titres de formulaire */
#eventForm #start_date-block-container h3,
#eventForm #timeline-container h3 {
	color: #3C2F1B;
	font-family: 'Georgia', serif;
}

/* Bouton 'enregistrer' */
#eventForm #save_button {
	background-color: #A63D2F;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
}
#eventForm #save_button:hover {
	background-color: #3C2F1B;
}

/* Tableau de timeline */
#timeline-container table.timeline {
	width: 100%;
	border-collapse: collapse;
}

/* Créneaux non travaillés */
.timeline td.not_worked_time {
	background-color: #FFF6EA;
	color: #ccc;
}

/* Créneaux libres */
.timeline td.free_time {
	background-color: #EBDDDE;
	cursor: pointer;
}

/* Créneaux sélectionnés */
.timeline td.selected_time {
	background-color: #A63D2F;
	color: white;
}

/* Créneaux réservés */
.timeline td.reserved_time {
	background-color: #C7B3B3;
	color: #3C2F1B;
}

/* Bloc de chargement */
div#loading {
	color: #A63D2F;
	font-weight: bold;
}

/* Styles des étiquettes de formulaire */
#start_date-block-container .zend_form dt,
#start_date-block-container .zend_form dt b,
#start_date-block-container .zend_form dd label {
	color: #3C2F1B;
	font-weight: 500;
}
