/* @import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700&display=swap'); */

body {
  font-family: 'Kiwi Maru', serif;
  background-color: #f0f9ff;
  /* background-color: red; */
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2393c5fd' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.calendar-day {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-inline: auto;
  border-radius: 50%;
  transition: all 0.2s;
}

.calendar-day:hover:not(.disabled) {
  background-color: #bae6fd;
}

.calendar-day.selected {
  background-color: #0ea5e9;
  color: white;
}

.calendar-day.disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

.time-slot {
  transition: all 0.2s;
  border: 2px solid transparent;
}

.time-slot:hover:not(.disabled) {
  border-color: #0ea5e9;
}

.time-slot.selected {
  background-color: #0ea5e9;
  color: white;
}

.time-slot.disabled {
  color: #cbd5e1;
  cursor: not-allowed;
  background-color: #f1f5f9;
}

.plan-card {
  transition: all 0.3s;
  border: 2px solid transparent;
}

.plan-card:hover:not(.disabled) {
  transform: translateY(-5px);
}

.plan-card.selected {
  border-color: #0ea5e9;
}

.plan-card.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.modal {
  transition: opacity 0.3s ease;
}

.modal-content {
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #0ea5e9;
  border-radius: 50%;
}
