.schedule-dialog {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.dialog-content {
  position: relative;
  background-color: #fff;
  margin: 2% auto;
  padding: 0;
  width: 95%;
  height: 90%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  animation: dialogOpen 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
}

@keyframes dialogOpen {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-btn {
  align-self: flex-end;
  padding: 5px 15px;
  color: #333;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  border-bottom-left-radius: 5px;
}

.close-btn:hover,
.close-btn:focus {
  color: #000;
}

.dialog-content iframe {
  width: 100%;
  flex-grow: 1;
  border: none;
}

#calendar-container {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#calendar-container iframe {
  width: 100%;
  flex-grow: 1;
  border: none;
}

.calendar-loading {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  color: #666;
  font-size: 16px;
}

.calendar-loading p {
  margin: 0;
}

.schedule-call {
  cursor: pointer;
}

@media (max-width: 1200px) {
  .dialog-content {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .close-btn {
    font-size: 32px;
    padding: 8px 18px;
  }
}

@media (max-width: 768px) {
  .close-btn {
    font-size: 32px;
    padding: 8px 18px;
  }
}
