/* date style for flatpickr-day */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #0088bf;
}

.inside-container {
  width: 100%;
  min-height: 100vh;
  border-radius: 10px;
  /* margin-top: -15px; */
  margin-bottom: 20px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  border-bottom: 0.1px solid #00000040;
}
.items {
  height: 80%;
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  overflow-x: scroll;
}

.items::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and newer Edge */
}

.search {
  padding: 20px;
  padding-bottom: 0;
  align-items: center;
  justify-content: flex-end;
  display: none;
}
.department-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid transparent;
}
.inside-department-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px 15px;
}

.department-container.active {
  border-bottom-color: var(--primary-color);
}

.dept-image {
  height: 60px;
}
.doctor-image {
  height: 60px;
}
.department-details {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.department-details span {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
}
.department-details p {
  color: var(--p-color);
  font-size: 15px;
  font-weight: bold;
  margin: 0;
}
.search-container {
  border-radius: 10px;
  background-color: white;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  border: 0.1px solid #00000040;
}
.search-box {
  border: none;
  outline: none;
  margin: 5px;
  font-size: 16px;
}
.search-box::placeholder {
  font-size: 16px;
}
.body {
  width: 100%;
}

.department-name {
  background-color: white;
  width: 22%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  border-radius: 5px;
  padding: 5px;
  box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.15);
}
.department-name h6 {
  color: var(--p-color);
  font-size: 17.5px;
  font-weight: bold;
}
.doctors-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  /* display: none; */
  gap: 20px 20px;
}
.doctors-details {
  background-color: white;
  width: 100%;
  padding: 1.2rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  border-radius: 10px;
  border: 0.1px solid #00000040;
}
.doctor-image-container {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.image-doctor {
  width: 80%;
  border-radius: 50;
  height: 70%;
}
.doctor-details-container {
  width: 45%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.doctor-details-container h6 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.doctor-details-container p {
  font-size: 14px;
}
.doctor-details-container span {
  font-size: 16px;
  color: var(--primary-color);
}
.doctor-details-container a {
  color: blue;
  display: none;
}
.doctor-booking-container {
  width: 28%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.booking-button {
  background-image: linear-gradient(#36a19b, #015d67);
  text-transform: uppercase;
  font-size: 11px;
  padding: 11px 21px;
  border: none;
  border-radius: 4px;
  color: white;
}
.booking-button p {
  color: white;
  font-size: 13px;
  margin-bottom: 0px;
}
.load-more-doctor-div {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: none;
  margin-bottom: 20px;
}
.no-doctors-message {
  font-weight: normal;
  color: var(--p-color);
}
/* departmentwise details */
.dept-items {
  /* height: 80%; */
  width: 50%;
  align-items: flex-end;
  justify-content: flex-start;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 5px;
}
.dept-search-items {
  height: 80%;
  width: 50%;
  align-items: center;
  justify-content: flex-end;
  display: flex;
  flex-direction: row;
}
.dept-doctor-image {
  height: 60px;
}
.dept-doctor-details {
  height: 90%;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.dept-doctor-details h5 {
  font-size: 20px;
  margin-bottom: 0px;
}
.dept-doctor-details p {
  margin-bottom: 0px;
}
.dept-search {
  height: 80%;
  width: 44%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.dropdown-container {
  width: 100%;
  height: 35px;
  border-radius: 5px;
  background-color: white;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  border: 1px solid #00000040;
}
.department-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
.dropbtn {
  color: black;
  font-size: 15px;
  border: none;
  cursor: pointer;
  height: 100%;
  width: 100%;
  background: none;
}
.dropbtn:focus {
  outline: none;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 4px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.department-dropdown:hover .dropdown-content {
  display: block;
}
.dept-doctors-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  gap: 20px 20px;
}
/* bookings page  */

.bookings-container {
  padding: 20px 15px;
  background-color: var(--white-color);
}

.bookings {
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.bookings-doctor-container {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
  border: 0.1px solid #00000040;
}
.bookings-doctor-image-container {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  height: 60%;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bookings-doctor-details-container {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.bookings-date-container {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-left: 25px;
}
.heading-container {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  align-items: flex-start;
  justify-content: space-evenly;
  display: flex;
  flex-direction: column;
}
.heading-container p {
  font-weight: 100;
}
.date-container {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  margin-bottom: 10px;
}
.date-details {
  flex: 1;
}
.date-display {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin: 8px;
}

.booking-calendar {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.time-container {
  width: 100%;
  border: 0.1px solid #00000040;
  border-radius: 5px;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 200px;
  padding: 10px;
  justify-content: space-evenly;
  gap: 10px;
}
.time-container p {
  margin-bottom: 0px;
  text-align: center;
  font-size: 14px;
}
.section-container {
  justify-content: space-evenly;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section-morning {
  flex: 1;
  border: 0.5px solid #00000042;
  align-items: center;
  display: flex;
  padding: 5px;
  border-radius: 8px;
}

.session-details {
  display: flex;
  align-items: center;
  flex: 1;
}

.slot-radio-btn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 0.5px solid #333;
  background-color: #fff;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  margin: 5px;
  position: relative;
}

.slot-radio-btn:checked::before {
  content: "✔";
  color: #000;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-morning h6 {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
  text-align: center;
}
.section-morning p {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
  text-align: center;
}
.inside-time-container-one {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.inside-time-container-two {
  width: 100%;
  border-radius: 5px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--custom-btn-bg-hover-color);
  flex-direction: column;
  padding-top: 5px;
}
.inside-time-container-two.active {
  display: flex;
}
.inside-time-container-two p {
  text-align: center;
}
.inside-time-container-three {
  width: 100%;
  border-radius: 5px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--custom-btn-bg-hover-color);
  flex-direction: column;
  padding-top: 5px;
}
.inside-time-container-three.active {
  display: flex;
}
.inside-time-container-three p {
  text-align: center;
}
.fa-ban {
  font-size: 40px;
}
.time-section {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: row;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  gap: 10px;
}
.morning {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.morning h6 {
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 0.5px;
}
.time-section-line-morning {
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
}
.time-section-line-evening {
  width: 50%;
  height: 2px;
  background-color: white;
}
.time-section-line-evening.active {
  background-color: var(--secondary-color);
}
.time-section-line-morning.active {
  background-color: white;
}
.time-container-line {
  width: 100%;
  height: 0.1px;
  background-color: #00000040;
}
.time-details-morning {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  background-color: yellowgreen;
}
.time-details-evening {
  display: none;
  width: 100%;
}
.evening {
  width: 90%;
  margin: 25px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  display: grid;
}
#container-evening.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#container-morning.active {
  display: none;
}
.time {
  width: 100%;
  height: 40px;
  border: 0.1px solid #00000040;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--section-bg-color);
  font-size: 16px;
  cursor: pointer;
}
.inactive-slot {
  pointer-events: none;
  background-color: rgb(168, 8, 8);
  color: white;
  /* opacity: 0.5; */
}
.time.active {
  background: linear-gradient(#36a19b, #015d67);
  color: #f1f1f1;
}
.inside-bookings {
  width: 25%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.other-doctors-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 250px)); */
  border-radius: 5px;
  /* gap: 10px; */
}
.container-doctors .name {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-bottom: 0px;
  color: var(--primary-color);
}
.container-doctors span {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0px;
}
.container-doctors p {
  font-size: 12px;
  text-align: center;
  margin-bottom: 0px;
}
.container-doctors a {
  font-size: 15px;
  text-align: center;
  margin-bottom: 0px;
  color: var(--primary-color);
}
.container-doctors {
  height: 100%;
  width: calc(25% - 10px);
  border: 0.1px solid #00000040;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin: 5px;
}
.specialists-heading {
  margin: 15px 0;
  font-size: 16px;
  font-weight: bold;
}
.image-container-doctors {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.left {
  height: 100%;
  width: 5%;
  background-color: var(--secondary-color);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.right {
  height: 100%;
  width: 5%;
  background-color: var(--secondary-color);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.center {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.address-container {
  width: 100%;
  flex-direction: column;
  align-items: center;
  display: none;
}
.address-container.active {
  display: flex;
}
.patient-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.patient-header.active {
  display: none;
}
.form {
  width: 100%;
}
.form.active {
  display: none;
}

.label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.input {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.form-submit-button {
  padding: 7px 14px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: center;
}
.form-cancel-button {
  padding: 7px 14px;
  background-color: var(--danger);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: center;
}
.success-appointment {
  height: 100px;
  width: 100%;
  padding: 10px;
  display: none;
}
.success-appointment.active {
  display: flex;
}
.inside-success-appointment {
  background-color: var(--custom-btn-bg-hover-color);
  height: 100%;
  width: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1px solid #00000040;
  padding: 10px;
}
.inside-success-appointment span {
  text-align: center;
}
.department-doctors-list-container {
  width: 100%;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  justify-content: center;
  display: none;
}
.department-doctors-list {
  width: 100%;
  display: grid;
  padding: 10px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid;
  border-radius: 5px;
  gap: 10px;
}
.service {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  gap: 10px;
}
.captcha {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.card {
  border-radius: 1.25rem !important;
}

.dept {
  padding-right: 10px;
  padding-left: 10px;
}

.dept-card {
  max-height: 122px;
}

.dept-card-body {
  margin-left: 15px;
  padding: 10px;
  overflow: hidden;
}

.dept-icon {
  margin-bottom: 5px;
  color: black;
}

.dept-title {
  color: black;
  text-align: left;
}

.dept-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  padding: 30px;
}

.empty-doctor-list {
  padding: 2rem;
  font-size: 1.1rem;
  text-transform: capitalize;
  text-align: center;
}

.doctor-view {
  min-height: 300px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
}

.doctor-card-container {
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
  justify-content: end;
  display: flex;
  flex-direction: column;
}

.doctor-image-view {
  width: 100%;
  flex: 1;
  object-fit: cover;
  transition: transform 0.3s ease, scale 0.3s ease;
}

.doctor-view:hover .doctor-image-view {
  scale: 1.05;
}

.doctor-card {
  border: none;
  background: #e8fffe;
}

.doctor-name {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
}

.doctor-title {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.7rem;
}

.doctor-designation {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.8rem;
}

.disabled-slot {
  opacity: 0.3;
  cursor: not-allowed;
}

.priority-failed {
  display: none;
}

.priority-failed.active {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

@media (min-width: 768px) and (max-width: 992px) {
  .header {
    flex-direction: column-reverse; /* Change to column on smaller screens */
    align-items: flex-start;
    padding-left: 0px;
    padding-right: 0px;
  }
  .search-container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .dept-items {
    width: 100%;
    height: 60px;
    justify-content: center;
  }
  .dept-search-items {
    width: 100%;
    height: 70px;
    align-items: center;
  }
  .dropdown-container {
    height: 30px;
    width: 70%;
  }
  .dept-doctor-image {
    height: 50px;
  }
}
@media (max-width: 768px) {
  .header {
    flex-direction: column-reverse; /* Change to column on smaller screens */
    align-items: flex-end;
    padding-left: 0px;
    padding-right: 0px;
  }

  .dept-image {
    height: 30px;
  }

  .doctor-image {
    height: 30px;
  }

  .items {
    width: 100%;
  }
  .search-container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .department-details span {
    font-size: 15px;
    font-weight: bold;
  }
  .department-details p {
    color: var(--p-color);
    font-size: 10px;
    font-weight: bold;
    margin: 0;
  }

  .department-name {
    background-color: aqua;
    width: 47%;
  }

  .dept-items {
    width: 100%;
    height: 60px;
    justify-content: center;
  }
  .dept-search-items {
    width: 100%;
    height: 70px;
  }
  .dept-doctors-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .doctor-details-container {
    width: 66%;
  }
  .doctor-image-container {
    width: 28%;
  }
  .doctors-details {
    gap: 10px;
  }
  .dropdown-container {
    height: 30px;
  }
  .dept-doctor-image {
    height: 45px;
  }
}

@media (max-width: 536px) {
  .form-submit-button {
    padding: 5px;
  }
  .form-cancel-button {
    padding: 5px;
  }
}

@media (max-width: 350px) {
  .department-name {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .container-doctors {
    width: calc(33.33% - 10px);
  }
  .doctor-booking-container {
    display: none;
  }
  .doctor-details-container a {
    display: block;
    color: blue;
    font-size: 12;
  }
  .doctors-details {
    justify-content: space-between;
  }
  .doctor-details-container {
    width: 70%;
  }
  .doctor-image-container {
    width: 30%;
  }
  .department-doctors-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .dept-doctor-details h5 {
    font-size: 18px;
    margin-bottom: 0px;
  }
  .dept-doctor-details p {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .dropbtn {
    font-size: 12px;
  }
  .dropdown-content a {
    font-size: 12px;
  }
  .date-container {
    flex-direction: column-reverse;
  }
  .date-details {
    width: 100%;
  }
  .bookings-doctor-image-container {
    width: 85%;
    height: 60%;
  }
  .bookings-doctor-container {
    height: 260px;
  }
  .bookings-doctor-container h5 {
    font-size: 15px;
  }
  .bookings-doctor-container span {
    font-size: 12px;
  }
  .bookings-doctor-container p {
    font-size: 10px;
  }
}
@media (max-width: 766px) {
  .doctors-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .doctor-details-container {
    width: 75%;
    align-items: flex-start;
  }
  .doctor-details-container h6 {
    font-size: 15px;
  }
  .doctor-details-container p {
    font-size: 10px;
  }
  .doctor-details-container span {
    font-size: 12px;
    color: var(--primary-color);
  }
  .doctor-details-container a {
    color: blue;
    font-size: 12;
  }
  .department-doctors-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .time {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .bookings {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .inside-bookings {
    width: 90%;
  }
  .container-doctors {
    width: calc(50% - 10px);
  }
  .bookings-date-container {
    width: 100%;
    padding: 0;
  }
  .bookings-doctor-container {
    height: 155px;
    flex-direction: row;
    gap: 15px;
  }
  .bookings-doctor-image-container {
    width: 50%;
    height: 76%;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 15px;
  }
  .bookings-doctor-container h5 {
    font-size: 18px;
  }
  .bookings-doctor-container span {
    font-size: 15px;
  }
  .bookings-doctor-container p {
    font-size: 12px;
  }
  .fa-ban {
    font-size: 35px;
  }
}
@media (max-width: 470px) {
  .bookings-doctor-container {
    height: 130px;
    gap: 10px;
  }
  .bookings-doctor-container h5 {
    font-size: 15px;
  }
  .bookings-doctor-container span {
    font-size: 12px;
  }
  .bookings-doctor-container p {
    font-size: 10px;
  }
  .time-details-morning {
    grid-template-columns: repeat(3, 1fr);
  }
  .fa-ban {
    font-size: 30px;
  }
  .container-doctors {
    width: calc(100% - 10px);
  }
}
@media (max-width: 416px) {
  .flatpickr-calendar.inline {
    width: 260px;
  }
  .flatpickr-months {
    width: 100%;
  }
  .flatpickr-current-month {
    font-size: 110%;
  }
  .flatpickr-rContainer {
    width: 100%;
  }
  .flatpickr-days {
    width: 100%;
  }
  .dayContainer {
    padding: 0;
    outline: 0;
    text-align: left;
    width: 259.875px;
    min-width: 259.875px;
  }
  .department-doctors-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .flatpickr-calendar.inline {
    width: 230px;
  }
  .dayContainer {
    width: 229.875px;
    min-width: 229.875px;
  }
  .flatpickr-day {
    max-width: 33px;
    height: 33px;
    line-height: 33px;
  }
  .form {
    grid-template-columns: repeat(1, 1fr);
    gap: 2px;
  }
  .section-morning {
    width: 70%;
  }
}
@media (max-width: 320px) {
  .flatpickr-calendar.inline {
    width: 200px;
  }
  .dayContainer {
    width: 199.875px;
    min-width: 199.875px;
  }
  .flatpickr-day {
    max-width: 29px;
    height: 29px;
    line-height: 29px;
  }
  .flatpickr-current-month {
    font-size: 90%;
  }
  .evening {
    grid-template-columns: repeat(2, 1fr);
  }
  .fa-ban {
    font-size: 20px;
  }
}
@media (min-width: 300px) and (max-width: 416px) {
  .department-doctors-list {
    width: 70%;
  }
}
@media (min-width: 320px) and (max-width: 400px) {
  .evening {
    grid-template-columns: repeat(3, 1fr);
  }
}
