/* Flatpickr custom theme for Pink & White */

@font-face {
  font-family: "loyal";
  src: url("../new-fonts/eighties/Eighties-Comeback/OTF/EightiesComeback - Semi Bold Semi Condensed.otf")
    format("opentype");
}

@font-face {
  font-family: "loyal-black";
  src: url("./new-fonts/eighties/Eighties-Comeback/OTF/EightiesComeback - Black.otf")
    format("opentype");
}

.flatpickr-calendar {
  background: #fff8fb;
  border-radius: 12px;
  box-shadow: 0 2px 8px #f8c6d8;
  border: 1.5px solid #eab0c7;
  font-family: "loyal-black", Arial, sans-serif;
}
.flatpickr-months .flatpickr-month {
  color: #e75480;
  font-weight: 600;
}
.flatpickr-day {
  border-radius: 6px;
  color: #222;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.flatpickr-day.selected,
.flatpickr-day.today,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #e75480;
  color: #fff;
  border: 1.5px solid #e75480;
}
.flatpickr-day:hover {
  background: #ffe0ef;
  color: #e75480;
}
.flatpickr-weekday {
  color: #e75480;
  font-weight: 600;
}
.flatpickr-current-month input.cur-year {
  color: #e75480;
  font-weight: 600;
}
