
/* RENDEZ-VOUS EN LIGNE */
/* icone bas de page rendez-vous */
.footer-calendarRdv {
  position: fixed;
  bottom: 20px; /* Distance par rapport au bas de l'écran */
  right: 20px; /* Distance par rapport au côté droit de l'écran */
  background-color: #f4c47e; /* Couleur de fond */
  border-radius: 0%; /* Rendre l'icône ronde */
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.footer-calendarRdv a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}
.footer-calendarRdv:hover {
  background-color: #304137;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
/*supprime la grille des heures*/
.fc-time-grid {
    display: none; /* Masque toute la grille horaire */
}
/* Masquer le conteneur principal du calendrier */
.fc-scrollgrid-section.fc-scrollgrid-section-body {
    display: none; /* Masque la section principale de la grille des heures */
}
.visible-bouton {
    display: inline-block !important; /* Force l'affichage */
    visibility: visible !important; /* Assurez-vous qu'ils sont visibles */
}
.button-container {
    display: block; /* Assurez-vous que le conteneur est affiché */
}
.button-container {
    margin-top: 10px; /* Pour espacer les boutons du jour */
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.modal h2 {
    margin-top: 0;
    font-size: 30px;
}
.modal p {
    margin: 10px 0;
}
.btn-close {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-close:hover {
    background-color: #0056b3;
    color: white;
}
.modal .btn-valider {
    background-color: #f4c47e !important; 
    color: white !important; /* Couleur du texte initiale (blanc) */
    padding: 10px 20px;
    border-width: 2px;
    border-style: solid;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease; /* Transition pour l'effet hover */
}
/* Style lorsque le bouton est survolé */
.modal .btn-valider:hover {
    background-color: white !important; /* Couleur de fond lors du survol (blanc) */
    color: #f4c47e !important; /* Couleur du texte lors du survol (vert) */
    border-color: #f4c47e !important;
    border-width: 2px;
    border-style: solid;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
.btnRdv {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primaryRdv {
    color: #fff;
    background-color: #f4c47e;
    border-color: #f4c47e;
}
.btn-primaryRdv:hover {
    color: #f4c47e;
    background-color: #fff;
    border-color: #f4c47e;
    text-decoration: none;
    outline: 0;
}
/* FIN RENDEZ-VOUS EN LIGNE */

