.calendar-container {
  /* background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  > div {
    max-width: 360px;
  } */

  > div {
    max-width: 360px;
  }
}

#offer-selection {
  @media (max-width: 768px) {
    gap: 30px;
  }
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar-header h2 {
  font-size: 1.3rem;
  color: #0033cc;
  margin: 0;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}
.day-label {
  font-weight: bold;
  font-size: 0.8rem;
}
.day-button {
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}
.day-button.available {
  background: #e3f2fd;
}
.day-button.available:hover,
.day-button.selected {
  background: #1976d2;
  color: white;
}
.nav-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}
.hour-button {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  background-color: white;
}
.hour-button:hover {
  background-color: #1976d2;
  color: white;
}
.hour-button.selected {
  background-color: #1976d2;
  color: white;
  border: 1px solid #1976d2;
}
