.modalBookMeet .modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.modalBookMeet {
  z-index: -10 !important;
}

.modalBookMeet.show {
  z-index: 1055 !important; /* Bootstrap default modal z-index */
}

.modalBookMeet .agent-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.modalBookMeet .calenderDiv {
  background-color: white;
}

.modalBookMeet .datepicker-container {
  font-family: Arial, sans-serif;
}

.modalBookMeet .datepicker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 10px;
}

.modalBookMeet .current-month {
  font-weight: 500;
  font-size: 0.9rem;
}

.modalBookMeet .day-names {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.modalBookMeet .days-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.modalBookMeet .day {
  font-size: 0.8rem;
  padding: 5px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
}

.modalBookMeet .day:hover {
  background-color: #f0f0f0;
}

.modalBookMeet .day.other-month {
  color: #ccc;
}

.modalBookMeet .day.today {
  font-weight: bold;
  color: var(--theme-color);
}

.modalBookMeet .day.selected {
  background-color: var(--theme-color);
  color: white;
}

.modalBookMeet .day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* Time selection styles */
.modalBookMeet .timepic {
  padding: 10px;
}

.modalBookMeet .ths_date {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.modalBookMeet .listitem {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.modalBookMeet .pickitem {
  position: relative;
}

.modalBookMeet .timeitem {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
}

.modalBookMeet .timeitem:hover {
  background-color: #f0f0f0;
}

.modalBookMeet .pickitem.active .timeitem {
  background-color: var(--theme-color);
  color: white;
}

.modalBookMeet .confirm-button {
  right: -80px;
  top: 0;
  padding: 8px 12px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.modalBookMeet .confirm-button:hover {
  background-color: #218838;
}

.btn-blue {
  background-color: var(--theme-color);
  color: white;
}

.fs-18 {
  font-size: 18px;
}

.next-month {
  padding: 2px 12px;
  border: none;
  color: #313131 !important;
  font-weight: 700;
  background: none;
  font-size: 20px;
  color: #fff;
  border-radius: 18px;
}

.prev-month {
  padding: 2px 12px;
  border: none;
  color: #313131 !important;
  font-weight: 700;
  background: none;
  font-size: 20px;
  color: #fff;
  border-radius: 18px;
}

.book-call-img img {
  width: 100%;
  border-radius: 13px;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}

.book-call-text p {
  font-size: 13px;
  color: #6d6d6d;
}

@media (max-width: 600px) {
  .modalBookMeet {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}
.hidden-form-view {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.hidden-form-view.show {
  visibility: visible;
  opacity: 1;
  height: auto;
  pointer-events: all;
}/*# sourceMappingURL=book-a-call.css.map */