.appointment-container {
  width: auto;
  margin: 30px 40px;
  padding: 20px;
  background-color: #fcfafa;
  border-radius: 10px;
}

.date-selector,
.time-selector {
  display: flex;
  width: auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.date-selector .day {
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.date-selector .day.active {
  background-color: #65a30d;
  transition: all 0.3s ease-in-out;
  color: white;
}

.segment.active {
  background-color: #65a30d;
  color: white;
}

.time-option {
  padding: 5px 15px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.time-option:active {
  border: none;
}

.time-segment {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.segment {
  padding: 8px 40px;
  border: none;
  border-radius: 5px;
  background-color: #f4f4f4;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.time-option:hover,
.time-option.active {
  background-color: #65a30d;
  color: white;
}

.day-nav {
  margin-bottom: 20px;
}

.prev-days {
  font-size: 2rem !important;
}

.prev-month {
  font-size: 2rem !important;
}

.next-days {
  font-size: 2rem !important;
}

.next-month {
  font-size: 2rem !important;
}

#multiSelectContainer {
  border: 1px solid #ccc;
  padding: 20px 0px;
  margin: 10px 43px;
  border-radius: 4px;
  width: auto;
  position: relative;
  cursor: pointer;
}
#selectedItems {
  display: flex;
  flex-wrap: wrap;
}
.selected-item {
  background-color: #e0e0e0;
  border-radius: 3px;
  margin: 2px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
}
.selected-item span {
  margin-left: 5px;
  cursor: pointer;
}
#dropdownMenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background-color: white;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1;
}
.dropdown-option {
  padding: 5px;
  cursor: pointer;
}
.dropdown-option:hover {
  background-color: #f0f0f0;
}
.dropdown-hidden {
  display: none;
}
