/* 🌸 Style de la boîte en plein écran (quand on ouvre une case) */
.fullscreen-box {
  background: #fff0f5;
  border-radius: 16px;
  padding: 20px;
  width: 70%;
  max-height: 80%;
  overflow: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 1.2em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  animation: fadeInZoom 0.5s ease; /* ouverture */
}

/* Animation d'ouverture */
@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation de fermeture (identique mais inversée) */
@keyframes fadeOutZoom {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  } /* même effet que l'ouverture, mais fade out */
}

.fullscreen-overlay.fade-out {
  animation: fadeOutZoom 0.5s forwards;
}

.fullscreen-box.zoom-out {
  animation: fadeOutZoom 0.5s forwards;
}
/* 🌑 Cases verrouillées / pas encore ouvertes */
.day.not-opened {
  background-color: #ddd; /* gris clair */
  color: rgba(0, 0, 0, 0.5); /* chiffre un peu transparent */
  cursor: not-allowed; /* curseur interdit */
  opacity: 0.6; /* un peu moins visible */
}