.get-free-consultation-popup {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.calendar-container {
  background: white;
  padding: 0.99rem;
  border-radius: 0px;
  box-shadow: 0px 5.22px 10.44px 0px #3e134d12;

  text-align: center;
  width: 11rem;
  height: 10.6rem;
}
.month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: #8a2be2;
  font-weight: bold;
  margin-bottom: 10px;
}
.get-free-consultation-popup__heading {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brandClr);
  line-height: 120%;
  padding: 0.8rem;
  margin-top: 0.3rem;
  width: 17rem;
}
/* .arrow {
  cursor: pointer;
  font-size: 18px;
  color: #8a2be2;
} */
.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-weight: bold;
  color: #bbb;
  margin-bottom: 5px;
}
.weekdays > div {
  font-size: 0.522rem;
  font-weight: 400;
}
#monthYear {
  font-size: 0.6rem;
  font-weight: 300;
  color: #282828 !important;
}
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.day {
  padding: 0.26rem 0.42rem 0.26rem 0.33rem;
  font-size: 0.45rem;
  color: #333;
  width: 1.3rem;
  text-align: center;
  height: 1.17rem;
}
.day.disabled {
  color: gray;
  pointer-events: none;
  opacity: 0.5;
}

.calendar-left-arrow,
.calendar-right-arrow {
  width: 1.3rem;
  cursor: pointer;
}

.day {
  padding: 0.2rem;
  font-size: 0.45rem;
  color: #333;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%; /* Default shape */
  transition: background 0.3s, color 0.3s;
}

.day:hover {
  background: #ddd;
}

.selected {
  background: var(--brandClr);
  color: white;
  font-weight: bold;
}
.day.disabled {
  color: #ccc;
  pointer-events: none;
  cursor: not-allowed;
}
.main-calendar-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.calendar-container__message-input {
  display: none;
}

.calendar-container__form-sub-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .get-free-consultation-popup {
    padding: 0.01rem 0 2rem 0;
  }
  .calendar-container__form-sub-container {
    justify-content: center;
    padding-top: 0.5rem;
  }

  .get-free-consultation-popup__heading {
    font-size: 0.41rem;
    line-height: 150%;
    width: 8.79rem;
    padding: 0;
    margin-bottom: 0.5rem;
  }
  .contact-form__btn {
    position: relative;
    bottom: -1.5rem;
    left: 2rem;
  }

  .calendar-container {
    width: 7.06rem;
    height: 6.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    order: 2;
    position: absolute;
    z-index: 3;
    right: 0.5rem;
    box-shadow: 0px 8px 16px 0px #3e134d12;
    padding: 0.66rem 0;
  }

  .weekdays {
    width: 5.6rem;
  }

  .main-calendar-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 0em;
  }
  .calendar-container__message-input {
    display: flex;
    flex-direction: column;
  }
  #monthYear {
    font-size: 0.37rem;
  }
  .calendar-left-arrow,
  .calendar-right-arrow {
    width: 0.83rem;
  }
  .weekdays > div {
    font-size: 0.33rem;
  }
  .day {
    width: 0.833rem;
    height: 0.75rem;
    font-size: 0.29rem;
  }
  .month-header {
    width: 5.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .calendar-container__form {
    background-color: #ffe5f0;
    width: 13.5rem;
    height: 7.25rem;
    justify-content: flex-start !important;
  }

  .calendar-container__form .banner__input,
  .calendar-container__message-input {
    width: 8.45rem;
  }
}
