
/* hero */
.container-0- {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: rgba(11, 11, 11, 0.32);
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container-0 {
    position: relative;
    width: 100%;
    text-align: center;
}

.container-1 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.text-2 {
    font-size: 5rem;
    font-weight: bolder;
    color: #fff;
    text-align: center;
}

/* Cards */
.card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 20px;
}

.card-header {
  background-color: #18a686;
  color: white;
  font-weight: 600;
  border-radius: 0.5rem 0.5rem 0 0 !important;
  padding: 15px 20px;
}

/* Calendar */
.calendar-nav-btn {
  background: none;
  border: none;
  color: #18a686;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  flex-direction: column;
  align-items: center;
}

.calendar-nav-btn:hover {
  background-color: rgba(24, 166, 134, 0.1);
}

#calendar-days {
  gap: 0.5rem;
}

.calendar-day {
  cursor: pointer;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  background-color: white;
}

.calendar-day:hover {
  background-color: rgba(24, 166, 134, 0.1);
}

.calendar-day.active {
  background-color: #18a686;
  color: white;
  font-weight: 600;
}

.calendar-day.booked {
  opacity: 0.6;
  cursor: not-allowed;
  position: relative;
}

.calendar-day.booked::after {
  content: "Booked";
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: #94a3b8;
  color: white;
  font-size: 0.6rem;
  padding: 0.1rem 0.3rem;
  border-radius: 0.5rem;
}

.calendar-day.today {
  position: relative;
}

.calendar-day.today::after {
  content: 'Today';
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #10b981;
  color: white;
  font-size: 0.6rem;
  padding: 0.1rem 0.3rem;
  border-radius: 0.5rem;
}

/* Time Slots */
.time-slot {
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: white;
  position: relative;
}

.time-slot:hover {
  border-color: #18a686;
  color: #18a686;
}

.time-slot.selected {
  background-color: #18a686;
  color: white;
  border-color: #18a686;
  box-shadow: 0 2px 8px rgba(24, 166, 134, 0.3);
}

.time-slot.booked {
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}

.time-slot.booked::after {
  content: "Booked";
  display: inline-block;
  background-color: #94a3b8;
  color: white;
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.time-slots-wrapper {
    display: none;
}

/* Form */
.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
  border-color: #18a686;
  box-shadow: 0 0 0 0.25rem rgba(24, 166, 134, 0.25);
}

.btn-primary {
  background-color: #18a686;
  border-color: #18a686;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background-color: #076767;
  border-color: #076767;
  transform: translateY(-2px);
}

/* Loading Spinner */
.spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  border-width: 0.2em;
}

/* Alert */
.alert {
  border-radius: 0.5rem;
}

/* Confirmation Modal */
.confirmation-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .card-body {
    padding: 1rem;
  }

  .time-slot {
    padding: 0.5rem;
  }
}
