.btn-calendrier {
  display: grid;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  text-align: center;
  background-color: #a3e635;
  color: #365314;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  z-index: 9999;
}
.btn-calendrier:hover {
  background-color: #84cc16;
}
.btn-calendrier svg {
  margin: auto;
  pointer-events: none;
}
.close-calendrier-div {
  text-align: right;
}
.btn-close-calendrier {
  padding: 4px;
  background-color: #374151;
  color: #f3f4f6;
  border-radius: 50%;
}

.btn-close-calendrier:hover {
  background-color: #1f2937;
}

.calendrier-modal {
  position: relative;
  padding: 15px 20px 40px;
  min-width: 400px;
  max-width: 480px;
  max-height: 480px;
  overflow: auto;
  overscroll-behavior: contain;
  background: #fff;
  border-radius: 10px;
}
.calendrier-modal::backdrop {
  opacity: 0.4;
  background-color: #1e293b;
}

.calendrier-titre {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #6b46c1;
}

.dates-calendrier {
  margin-bottom: 30px;
}
.dates-calendrier > p {
  font-weight: 500;
}

.date-item {
  padding: 8px 8px;
  font-size: 13px;
  color: #4b5563;
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
}

.footer-calendrier p {
  font-size: 18px;
  line-height: 26px;
}

.liens-calendrier {
  display: flex;
  gap: 40px;
  margin-top: 25px;
}
.lien-inscription,
.lien-contact {
  padding: 6px 12px;
  font-weight: 500;
  border-radius: 6px;
}
.lien-inscription {
  background-color: #ef4444;
  color: #fff;
}
.lien-inscription:hover {
  background-color: #dc2626;
}

.lien-contact {
  color: #6b7280;
}
.lien-contact:hover {
  background-color: #e5e7eb;
  color: #1f2937;
}
