/* ========== RESET GLOBAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
  color: #1f1f1f;
}







/* ========== HEADER ========== */
.header {
  display: flex;
  align-items: center;
  background: #274661;
  padding: 1rem 2rem;
  color: white;
  position: relative;
}

.burger {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  margin-right: 1rem;
  display: none;
  /* caché par défaut desktop */
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 3rem;
}

.logo-text img {
  height: 40px;
  width: auto;
}

.logo-text h1 {
  font-size: 1rem;
  font-weight: bold;
}

.header a {
  text-decoration: none;
  color: #f8f8f8;
}






/* NAVBAR */
.navbar {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  /* au lieu de flex-end */
  align-items: center;
  /* pour être bien calé verticalement */
}

.menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ffbdcb;
}

/* Sous-menu amélioré */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 0.5rem;
  left: 0;
  background-color: #274661;
  /* même fond que le header */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  min-width: 180px;
  padding: 0.5rem 0;
}

/* Container parent du sous-menu */
.has-submenu {
  position: relative;
}

/* Affiche le sous-menu au survol */
.has-submenu:hover .submenu {
  display: block;
}

/* Liens du sous-menu */
.submenu li a {
  display: block;
  padding: 0.7rem 1rem;
  text-decoration: none;
  font-weight: 500;
  color: white;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

/* Hover sur les liens */
.submenu li a:hover {
  background-color: #ffbdcb;
  /* fond rose au hover */
  color: #274661;
  /* texte bleu foncé */
  border-left: 4px solid white;
  padding-left: 0.8rem;
}


/* === Lien à droite dans le header === */
.header-right-link {
  margin-left: auto;
}

.header-right-link a {
  background-color: #ffbdcb;
  color: #274661;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.header-right-link a:hover {
  background-color: white;
  color: #274661;
}

/* Cacher sur mobile */
@media (max-width: 768px) {
  .header-right-link {
    display: none;
  }
}

/* === Lien séparé dans la sidebar mobile === */
.sidebar-separator {
  border: none;
  border-top: 1px solid #ffbdcb;
  margin: 2rem 0 1rem;
}

.mobile-sidebar-extra-link {
  margin-top: 0.5rem;
}

.mobile-sidebar-extra-link a {
  display: block;
  color: #ffbdcb;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.mobile-sidebar-extra-link a:hover {
  color: white;
}









/* ========== SIDEBAR MOBILE ========== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 250px;
  background-color: #274661;
  padding: 2rem 1.5rem;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.3);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar:not(.hidden) {
  transform: translateX(0);
}

.mobile-sidebar button#close-sidebar {
  background: none;
  border: none;
  color: #ffbdcb;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 2rem;
}

.menu-sidebar {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-sidebar li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.menu-sidebar li a:hover {
  color: #ffbdcb;
}

/* Flèche ▼ dans la sidebar */
.submenu-toggle {
  background: none;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.submenu-toggle .arrow-down {
  font-size: 1rem;
  color: #ffbdcb;
  transition: transform 0.3s ease;
}

/* Rotation de la flèche si ouvert */
.submenu-toggle[aria-expanded="true"] .arrow-down {
  transform: rotate(180deg);
}

/* Sous-menu mobile masqué de base */
.mobile-submenu {
  list-style: none;
  /* enlève les petits points */
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  margin-left: 1rem;
}

.mobile-submenu a {
  font-size: 1.1rem;
  font-weight: normal;
  color: #ffbdcb;
}










/* ========== MAIN CONTENT INDEX =========*/

.main-content-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Partie gauche */
.left-side {
  flex: 1;
  min-width: 280px;
}

.home-title {
  padding-left: 25%;
  font-size: 4.5rem;
  color: #ffbdcb;
}

.left-side p {
  padding-left: 25%;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.buttons-container {
  padding-left: 25%;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.big-btn-left,
.big-btn-right {
  flex: none;
  width: auto;
  /* plus petit qu'avant */
  padding: 0.4rem 0.6rem;
  color: white;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
}

.big-btn-right {
  background-color: #ffbdcb;
  border: 5px solid #ffbdcb;
}

.big-btn-left {
  background-color: none;
  border: 3px solid #ffbdcb;
  color: #ffa3b7;
}

/* Partie droite */
.right-side {
  flex: 1;
  margin-top: 5%;
  margin-bottom: 5%;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.big-btn-left,
.big-btn-right {
  transition: transform 0.3s ease;
  transform: translateY(0);
}

/* Effet "up" au hover */
.big-btn-left:hover,
.big-btn-right:hover {
  transform: translateY(-5px);
  /* Le bouton monte un peu */
}

.hover-message {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  padding: 8rem 1rem 1rem 1rem;
  text-align: center;
  font-weight: bold;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  pointer-events: none;
}

.image-wrapper:hover .hover-message {
  opacity: 1;
  transform: translateY(0);
}


/* Pour les images carrousel
.image-wrapper {
  position: relative;
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
}
*/


.carousel-track {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0.5rem 0.8rem;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  background-color: transparent;
  color: white;
  user-select: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .prev,
.image-wrapper:hover .next {
  opacity: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  width: 70%;
  max-width: 900px;
  /* optionnel : borne la largeur */
  margin: auto;
  /* optionnel : centre dans la colonne */
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}







/* ========== MAIN CONTENT =========*/

.main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 20rem;
}

.main-content h1 {
  margin-bottom: 1rem;
  color: #ffbdcb;
}

.main-content h2 {
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  color: #274661;
}

.main-content li {
  margin-left: 3rem;
  margin-bottom: 0.5rem;
}

.main-content ul {
  margin-top: 1rem;
}

.main-content li ul {
  margin-left: 0.5rem;
  /* pour ajouter un petit décalage interne en plus si nécessaire */
}

.main-content i {
  margin-top: 2rem;
  color: rgb(122, 122, 122);
}

.adhesion-btn-container {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.adhesion-btn {
  background-color: transparent;
  border: 3px solid #ffbdcb;
  color: #ffa3b7;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.adhesion-btn:hover {
  transform: translateY(-5px);
}














/* ========== CALENDAR ==========*/

/* Container calendrier */
.calendar-container {
  width: 90vw;
  /* prend 90% de la largeur viewport */
  max-width: 1200px;
  /* limite max pour pas que ça déforme sur très grand écran */
  height: 80vh;
  /* prend 80% de la hauteur viewport */
  margin: 0 auto;
  /* centre horizontalement */
}

#calendar-full {
  width: 100% !important;
  /* FullCalendar veut parfois avoir sa propre taille, on force */
  height: 100% !important;
}

/* Style général FullCalendar */
.fc {
  background: transparent;
  border: none;
  font-size: 1rem;
}

/* En-tête du calendrier (titre + navigation) */
.fc-toolbar-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #222;
}

.fc-button {
  background: transparent;
  border: 2px solid #ffbdcb;
  /* rose INSA */
  color: #e91e63;
  border-radius: 4px;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.fc-button:hover {
  background: #e91e63;
  color: white;
}

/* Jours de la semaine */
.fc-col-header-cell-cushion {
  color: #555;
  font-weight: 600;
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
}

/* Case du jour actuel : transparent background mais on encadre le numéro */
.fc-daygrid-day.fc-day-today {
  background: transparent !important;
  position: relative;
}

/* Le numéro du jour actuel entouré */
.fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 50%;
  background-color: #ffbdcb;
  /* Cercle rose */
  color: white;
  /* Numéro blanc */
  font-weight: 700;
  user-select: none;
}

/* Événements */
.fc-event {
  background-color: #ffbdcb !important;
  /* rose */
  border: none !important;
  color: white !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  cursor: default;
  box-shadow: 0 2px 6px rgba(233, 30, 99, 0.4);
  transition: background-color 0.3s ease;
}

.fc-event:hover {
  background-color: #ffa3b7 !important;
  /* rose plus foncé au hover */
}

/* Description et infos dans l'événement (si tu veux personnaliser) */
.fc-event .fc-event-title {
  font-size: 0.9rem;
}

/* Pour rendre la bordure du calendrier invisible */
.fc-daygrid {
  border: none;
}

/* Suppression des bordures autour des cases jours */
.fc-daygrid-day-frame {
  border: none;
}













/* ========== BUREAU SECTION ========== */

.bureau-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.bureau-card {
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 200px;
  text-align: center;
  padding: 1.5rem 1rem;
  transition: transform 0.3s ease;
}

.bureau-card:hover {
  transform: translateY(-8px);
}

.bureau-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #ffbdcb;
}

.bureau-card h3 {
  font-size: 1.2rem;
  color: #274661;
  margin-bottom: 0.2rem;
}

.bureau-card .role {
  font-weight: bold;
  color: #ffbdcb;
  margin-bottom: 0.6rem;
}

.bureau-card p {
  font-size: 0.95rem;
  color: #555;
}













/* ========== EVENT CARDS ========== */
.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  justify-content: center;
  margin-top: 2rem;
}

.event-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 270px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-info h3 {
  font-size: 1.2rem;
  color: #274661;
  margin-bottom: 0.2rem;
}

.event-date {
  font-weight: bold;
  color: #ffbdcb;
  font-size: 0.95rem;
  font-family: 'Courier New', monospace;
}

.event-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}













/* ========== FOOTER ========== */
.footer {
  background: #1f1f1f;
  color: white;
  padding: 2rem 1rem;
  margin-top: auto;
  text-align: left;
}

.footer p {
  text-align: center;
}

.footer-columns {
  display: flex;
  padding: 0 2rem;
  justify-content: center;
}

.footer-column {
  flex: 1;
}

.footer-column h3 {
  color: #ffbdcb;
  margin-bottom: 0.75rem;
}

.quick-links,
.footer-links {
  list-style: none;
  padding: 0;
}

.quick-links li,
.footer-links li {
  margin: 0.4rem 0;
}

.quick-links a,
.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.quick-links a:hover,
.footer-links a:hover {
  color: #ffbdcb;
}

.footer p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}





/* ========== BARRE DE RECHERCHE & FILTRES ========= */
.search-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 25%;
  background: white;
}

.search-filter img {
  width: 24px;
  height: 24px;
  display: block;
}

.search-filter input {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  flex: 1;
}

.search-filter button {
  background: #274661;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
}











/* ========== MODALE & OVERLAY ========= */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.filters-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
}

.filters-modal h3 {
  margin-top: 0;
  color: #ffbdcb;
}

.filter-group {
  margin-bottom: 1rem;
}

.filter-group strong {
  color: #274661;
}

.filter-group label {
  display: block;
  margin: 8px 0;
  font-size: 1rem;
}

.filters-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.filters-buttons button {
  flex: 1;
  padding: 0.5rem;
  background-color: #274661;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.filters-buttons button:hover {
  background-color: #0047ab;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
}

.close-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}




/* ========== ANIMATIONS MODALES ========= */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}







/* ========== CARTES D’OFFRES ========= */
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.offer-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.offer-card h3 {
  color: #ffbdcb;
  margin: 0 0 10px 0;
}

.offer-card p {
  margin: 5px 0;
}

.offer-card a {
  display: inline-block;
  text-decoration: none;
  background: #274661;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.offer-card a:hover {
  background: #0047ab;
}

/* Message si aucune offre */
#no-results-message {
  font-size: 1.2rem;
  color: #ff4747;
  margin-top: 20px;
}







/* ========== BOUTON RETOUR EN HAUT ========= */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #274661;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

#backToTop img {
  height: 20px;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}









/* ========== DÉTAIL D’UNE OFFRE ========= */

/* Container */
.container {
  max-width: 900px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.section-title {
  color: #ffbdcb;
  font-size: 1.2rem;
  border-bottom: 2px solid #ffbdcb;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.info {
  margin: 15px 0;
}

.info strong {
  display: inline-block;
  width: 220px;
  font-weight: bold;
  color: #333;
}

.description {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
  margin-top: 5px;
  line-height: 1.5;
}

.contact {
  margin-top: 20px;
  padding: 15px;
  background: #f7f2f2;
  border-radius: 8px;
}

.contact h3 {
  color: #ffbdcb;
  margin-top: 0;
}

.btn-contact,
.back-btn {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  background: #274661;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-contact:hover,
.back-btn:hover {
  background: #0047ab;
}










/* ========== RESPONSIVE ========== */
/* Afficher burger et cacher navbar en mobile */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .right-side {
    width: 75%;
  }

  .image-wrapper {
    width: 82%;
  }

  .video-wrapper {
    width: 100%;
  }

  .navbar {
    display: none;
  }

  .home-title {
    font-size: 2.5rem;
  }

  .main-content,
  .main-content-index {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .main-content-index {
    align-items: center;
    text-align: center;
  }

  .buttons-container {
    justify-content: center;
    padding-left: 0;
    overflow-wrap: break-word;
    flex-direction: column;
  }

  .big-btn-left,
  .big-btn-right {
    width: auto;
    /* encore plus petit sur mobile */
    font-size: 0.9rem;
  }

  .home-title,
  .left-side p {
    padding-left: 0;
    text-align: left;
  }

  .calendar-container {
    height: 100vh;
  }

  .footer-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-column {
    width: 100%;
  }

  .event-card {
    width: 100%;
    max-width: 90vw;
  }

  .search-filter {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    background: white;
  }

  .search-filter input {
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
  }

  .search-filter button {
    padding: 10px;
    width: 100%;
    justify-content: center;
  }

  header img {
    display: none;
  }

  .filters-modal {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    width: 100vw;
    height: 100vh;
    padding: 1.5rem 1rem;
    background: white;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    box-sizing: border-box;
  }

  .filters-modal h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .filter-group {
    margin-bottom: 1.2rem;
  }

  .filter-group label {
    margin: 10px 0;
    font-size: 1rem;
  }

  .filters-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .filters-buttons button {
    width: 100%;
    font-size: 1rem;
  }

  .close-btn {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .overlay {
    display: none;
  }

  #offers {
    display: flex;
    flex-direction: column;
    margin-left: 15%;
    margin-right: 15%;
    gap: 15px;
    /* espace entre chaque offre */
    padding: 0 10px;
    /* un peu de marge sur les côtés */
  }

  .offer-card {
    width: 100%;
    /* prennent toute la largeur dispo */
    box-sizing: border-box;
    /* pour éviter les débordements */
  }
}

@media (min-width: 768px) and (max-width: 1820px) {
  /* Tablette portrait et petit laptop */

  .home-title {
    font-size: 3rem;
  }

  .main-content {
    padding: 2rem 12.5vw;
  }

  .right-side {
    margin-top: 9%;
    margin-bottom: 9%;
  }

  .calendar-container {
    max-width: 75vw;
    height: 100vh;
  }
}

/* Cacher burger et sidebar en desktop */
@media (min-width: 769px) {
  .mobile-sidebar {
    display: none !important;
  }
}