/*
#calendar-nav button {
  border: 2px solid #E9E1A7;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
 
}

#calendar-nav button img {
  width: 30px !important;
  height: 30px !important;
}

.outside-month {
    color: #aaa;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10%;
    width: 50%;
    height: 50%;
    margin:auto;
}

*/

/*calendrier*/
/* Style pour le calendrier */
.selected {
    outline: 2px solid #000;
    font-weight: bold;
}

#reservation-calendar table {
    width: 100%;
    border-collapse: collapse;
}
#reservation-calendar td, #reservation-calendar th {
    border: 1px solid #ccc;
    text-align: center;
    padding: 0.4em;
}
#reservation-calendar td {
    height: 50px;
}
#calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}
.slot {
  padding: 4px;
  margin: 2px 0;
  text-align: center;
  border-radius: 4px;
  color: white;
}

.slot.selected {
  outline: 2px solid yellow;
}

#calendar-nav span{
  text-transform: uppercase;
  font-weight: bold;
}

