/*
	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 */
}

/* Bloc principal stylisé */
.blockquote.blockquote {
  display: block !important;
  background: #fff7e6 !important;
  border: 2px solid #f0b36a !important;
  border-left: 8px solid #835055 !important;
  border-radius: 12px !important;
  padding: 18px 24px 18px 56px !important;
  margin: 0 0 20px 0 !important;
  font-weight: 700 !important;
  font-size: 1.2em !important;
  color: #835055 !important;
  box-shadow: 0 2px 14px 0 rgba(131,80,85,0.13) !important;
  position: relative !important;
  animation: shake 0.6s cubic-bezier(.36,.07,.19,.97) both;
}

/* Icône seulement une fois */
.blockquote.blockquote::before {
  content: "ℹ️";
  position: absolute;
  left: 0px;
  top: 24px;
  font-size: 2em;
  line-height: 1;
  z-index: 2;
}

/* ANNULATION DE TOUS LES EFFETS de fond/bordure/ombre sur les éléments internes, toutes profondeurs */
.blockquote.blockquote *,
.blockquote.blockquote *:not(.blockquote.blockquote) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Espace uniquement entre les lignes, pas de boîtes */
.blockquote.blockquote p,
.blockquote.blockquote span,
.blockquote.blockquote div {
  margin-bottom: 8px !important;
  display: block !important;
  color: #835055 !important;
}

/* Icône uniquement sur le bloc principal, jamais sur enfants */
.blockquote.blockquote *::before,
.blockquote.blockquote *::after {
  content: none !important;
}

/* Animation légère "shake" */
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}