.area:hover {
    fill: #255256;
}
.area {
    fill: #5C9BA1;
    cursor: pointer;
}
#popup {
    position: absolute;
    display: none;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 16px bold;
    line-height: 1.6; /* Espacement des lignes */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    z-index: 1000;
    color:#255256;
}

#popup b {
    color: #255256; /* Met en évidence les parties importantes */
}

#popup ul {
    padding-left: 20px;
}

#popup li {
    margin-bottom: 8px;
}



.container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.container2 {
    gap: 20px;
    width: 100%;
}

.container3 {
    gap: 20px;
    width: 100%;
    padding-left:20px;
}
  
#gauche{
    display: flex;
    width:60%;
} 
  
svg {
    width: 100%;
    height: auto;
}

.svg-container {
    position: fixed;
    top: 50px;
    right: 20px;
    width: 25%;
    height: auto;
}

.svg-rounded-box {
    background-color: white;
    border-radius: 15px;
    box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Graph1, #Graph2, #Graph3 {
    width: 100%;
    height: 30vh;
    max-width: 100%;
    max-height: 100%;
}

.rounded-box {
    background-color: white;
    border-radius: 15px;
    box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rounded-box3 {
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Partie Calendrier */
.calendar {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border-top: 5px solid #255256;
}

.calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #5C9BA1;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}

.calendar__nav-button {
    cursor: pointer;
    font-size: 18px;
    border: none;
    background-color: #255256;
    color: #fff;
    border-radius: 50%;
    padding: 8px 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.calendar__nav-button:hover {
    background-color: #5C9BA1;
    transform: scale(1.1);
}

.calendar__table {
    width: 100%;
    border-collapse: collapse;
}

.calendar__weekday, .calendar__day-cell {
    text-align: center;
    padding: 1px;
    font-size:14px;
    border: 1px solid #ddd;
}

.calendar__weekday {
    background-color: #5C9BA1;
    color: #555;
    font-weight: bold;
    border-bottom: 2px solid #255256;
}

.calendar__day-cell {
    background-color: #fff;
    color: #555;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.calendar__day-cell.current-month-day {
    background-color: #fafafa;
    color: #333;
    font-weight: bold;
}

.calendar__day-cell:hover {
    background-color: #5C9BA1;
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.calendar__day-cell.disabled {
    color: #ccc;
}

.calendar__day-cell.selected-day {
    background-color: #5C9BA1;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.calendar__day-cell {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.festival-info {
    max-width: 100%;
    padding: 10px;
    background-color: #5C9BA1;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-top: -10px;
    position: relative;
}

.calendar-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}



h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border-top: 5px solid #255256;
}

#TitreDesc{
    position: fixed;
    top: 60%;
    right: 7%;
    width: 25%;
    height: auto;
}

h4 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    text-align: center;
}

.custom-button {
  display: inline-block; /* Nécessaire pour le style des liens en bouton */
  background-color: #5C9BA1;
  color: white;
  text-decoration: none; /* Supprime le soulignement du lien */
  border: none;
  border-radius: 15px;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  text-align: center; /* Centre le texte horizontalement */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: fixed;
  left: 82vh;
  top: 87vh;
}

.custom-button:hover {
  background-color: #255256;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


#titre-svg{
  display: inline-block; /* Nécessaire pour le style des liens en bouton */
  position: fixed;
  text-align: center;
  justify-content: center;
  top: 1vh;
  color: #19a4b1;


}

