/* Corrections spécifiques pour le calendrier et l'affichage des disponibilités */

/* Titre et espace autour du calendrier */
.fc-header-toolbar {
  margin-bottom: 1.5em !important;
}

.fc .fc-toolbar-title {
  font-size: 20px;
  font-weight: 700;
  color: #15332A;
  text-transform: capitalize;
}

/* Styles des boutons du calendrier */
.fc .fc-button-primary {
  background-color: #196164;
  border-color: #196164;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.fc .fc-button-primary:hover {
  background-color: #CFFF45;
  border-color: #CFFF45;
  color: #15332A;
}

.fc .fc-button-primary:disabled {
  background-color: rgba(25, 97, 100, 0.7);
  border-color: rgba(25, 97, 100, 0.7);
}

/* Styles des événements dans le calendrier */
.fc .fc-event {
  cursor: pointer;
  background-color: #196164;
  border-color: #196164;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.fc .fc-event:hover {
  background-color: #CFFF45;
  border-color: #CFFF45;
  color: #15332A;
}

.fc .fc-event-time {
  font-weight: 600;
}

/* Styles pour les jours et les cellules */
.fc .fc-day-today {
  background-color: rgba(207, 255, 69, 0.1) !important;
}

.fc .fc-col-header-cell-cushion {
  padding: 10px;
  color: #15332A;
  font-weight: 700;
  text-transform: uppercase;
}

.fc .fc-daygrid-day-number {
  padding: 8px;
  color: #15332A;
  font-weight: 500;
}

/* Fallback pour les images manquantes */
.page-header {
  background-color: #196164;
}

.expert-sidebar__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Animation d'entrée pour les éléments */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* Fix pour l'espacement des boutons et liens */
.expert-sidebar__need-help-btn a {
  text-decoration: none;
}

.expert-detail__content {
  margin-bottom: 20px;
}
