/* DEBUT calendrier JS : jsSimpleDatePickr */
#calendarMain1, #calendarMain2 {
    margin-left: 20%;
}
/* conteneur calendrier */
.calendarWrap {
    display: none;
    position: absolute;
    z-index: 1000;
    width: 230px;
    padding: 5px 10px 10px 10px;
    background-color: #fff; /* Fond blanc */
    border-radius: 10px;
    font-size: 12px;
    color: #73818f; /* Couleur bleue #73818f */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Légère ombre */
}
/* bouton d'affichage */
#calendarMain1 > input, #calendarMain2 > input {
    display: block;
    width: 100px;
    height: 22px;
    padding-top: 2px;
    background-color: #73818f; /* Bleu #73818f */
    color: #fff; /* Texte en blanc */
    border-radius: 5px;
    border: none;
}
#calendarMain1 > input:hover, #calendarMain2 > input:hover {
    background-color: #5f6e7a; /* Bleu plus foncé au survol */
}
/* navigation dans le calendrier */
.calendarWrap ul {
    margin: 5px 0 10px 0;
    padding: 0;
}
.calendarWrap li {
    margin: 0;
    padding: 0;
    width: 20px;
    display: inline-block;
    *display: inline;
}
.calendarWrap li.calendarTitle {
    width: 170px;
    color: #73818f; /* Couleur bleue #73818f */
    text-align: center;
}
.calendarWrap li input {
    width: 20px;
    background-color: #73818f; /* Bleu #73818f */
    border: none;
    color: #fff; /* Texte en blanc */
}
.calendarWrap li input:hover {
    background-color: #5f6e7a; /* Bleu plus foncé au survol */
}
/* calendrier */
.jsCalendar {
    color: #73818f; /* Couleur bleue #73818f */
    border-collapse: collapse;
}
.jsCalendar th {
    color: #8ba7bf;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}
.jsCalendar td {
    padding: 0;
    border: none;
}
.jsCalendar a {
    display: block;
    width: 30px;
    padding: 3px 0 3px 0;
    color: #73818f; /* Couleur bleue #73818f */
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}
.jsCalendar .day:hover a {
    background-color: #0c75bf; /* Bleu plus foncé au survol */
    color: #fff; /* Texte en blanc au survol */
}
.jsCalendar .selectedDay a {
    background-color: #5f6e7a; /* Couleur bleu plus foncé a */
    color: #fff; /* Texte en blanc pour la date sélectionnée */
}
.jsCalendar tbody tr{
    height: auto!important;
}
/* FIN calendrier JS : jsSimpleDatePickr */