#scheduling_view .rtacontact_us-form {
  flex: 1 1 150px;
}
#scheduling_view .rtacontact_us-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
}
#scheduling_view .rtacontact_us-form form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#scheduling_view .rtacontact_us-form label {
  font-weight: 500;
  font-size: 14px;
}
#scheduling_view .rtacontact_us-form label span {
  color: red;
}
#scheduling_view .rtacontact_us-form input,
#scheduling_view .rtacontact_us-form select,
#scheduling_view .rtacontact_us-form #message {
  padding: 10px !important;
  font-size: 15px !important;
  border: 1px solid #ccc !important;
  border-radius: 0px !important;
  outline: none !important;
  width: -webkit-fill-available !important;
}
#scheduling_view .rtacontact_us-form textarea {
  resize: none;
}
#scheduling_view .rtacontact_us-form .contact-sub-button {
  background: #38a838;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 0px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  width: -webkit-fill-available;
}
#scheduling_view .rtacontact_us-form .contact-sub-button:hover {
  background: #2f8e2d;
}
#scheduling_view .rtacontact_us-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
#scheduling_view .rtacontact_us-form .checkbox input {
  width: auto !important;
  margin-left: 0px;
}
#scheduling_view .rtacontact_us-form label {
  font-weight: 600;
  font-size: 14px;
}
.appt_calendar_container {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
}
#scheduling_view .appt_calendar_header h3 {
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 0px;
  font-weight: 600;
}
#scheduling_view .appt_calendar_body {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 10px;
}
#scheduling_view .appt_calendar_left {
  flex: 1 1 300px;
}
#scheduling_view .appt_calendar_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
#scheduling_view .appt_calendar_nav .rtght_left_button {
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  font-size: 25px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
}
#scheduling_view .appt_calendar_nav .rtght_left_button:hover {
  background: #0078ff;
  color: #fff;
}
#scheduling_view .appt_calendar_weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}
#scheduling_view .appt_calendar_days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
#scheduling_view .appt_calendar_days div {
  text-align: center;
  padding: 10px 0;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  color: #333;
}
#scheduling_view .appt_calendar_days .inactive {
  color: #ccc;
  pointer-events: none;
}
#scheduling_view .appt_calendar_days .past {
  color: #bbb;
  background: #f8f8f8;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}
#scheduling_view .appt_calendar_days .active {
  background: #0078ff;
  color: #fff;
}
#scheduling_view .appt_calendar_right {
  flex: 1 1 250px;
}
#scheduling_view .appt_calendar_right h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 23px;
  margin-top: 10px;
  color: #444;
}
#scheduling_view .appt_time_slots {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#scheduling_view .appt_time_slots button {
  border: 1px solid #ddd !important;
  padding: 10px 0 !important;
  border-radius: 0px !important;
  background: #fff !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: 0.3s !important;
}
#scheduling_view .appt_time_slots button:hover,
#scheduling_view .appt_time_slots button.active {
  background: #38a838 !important;
  color: #fff !important;
  border-color: #38a838 !important;
}
#scheduling_view .appt_time_slots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 305px;  
  overflow-y: auto;   
  padding-right: 5px; 
}
#scheduling_view .appt_time_slots::-webkit-scrollbar {
  width: 6px;
}
#scheduling_view .appt_time_slots::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}
#scheduling_view .appt_time_slots::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
#scheduling_view .appt_time_slots::-webkit-scrollbar-thumb:hover {
  background: #999;
}
#scheduling_view .appt_time_slots {
  scrollbar-width: thin;
  scrollbar-color: #ccc #f0f0f0;
}
#scheduling_view .rtght_left_button i {
  display: flex;
  width: 25px;
  height: 35px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 650px) {
  #scheduling_view .appt_calendar_body {
    flex-direction: column;
  }
}

#scheduling_view .select2-selection--multiple {
  padding: 12px 8px !important;
  border-radius: 0px !important;
}
#scheduling_view .select2-search__field {
  margin-top: 0px !important;
}
#scheduling_view .select2-selection__choice {
  margin-top: 0px !important;
}
#scheduling_view .select2-selection__clear {
  margin-top: 0px !important;
}
