/* ── Modal ── */
.modal-content {
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.modal-dialog {
  max-width: 820px;
}

/* ── Panels ── */
.left-pane {
  padding: 32px 24px;
  border-right: 1px solid #e5e5e5;
  max-height: 420px;
}
.right-pane {
  padding: 32px 28px;
  position: relative;
}

.left-pane .host-name {
  font-size: 13px;
  color: #777;
  margin: 0;
}
.left-pane h5 {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin: 4px 0 8px;
}
.left-pane .meta {
  font-size: 13px;
  color: #555;
  margin: 0;
}
.right-pane h6 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* ── Month nav ── */
.month-nav {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.month-nav span {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.nav-btn {
  background: none;
  border: none;
  color: #1a6ac3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}
.nav-btn:hover {
  background: #e8f1fc;
}
.nav-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}
.nav-btn:disabled:hover {
  background: none;
}

/* ── Calendar ── */
.cal-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0px;
  margin-bottom: 5px;
}
.cal-head span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #999;
  padding: 4px 0;
  display: block;
  text-transform: uppercase;
}
.cal-day {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin: auto;
}
.cal-day.avail {
  color: #1a6ac3;
  background: #e8f1fc;
  cursor: pointer;
  font-weight: 600;
}
.cal-day.avail:hover {
  background: #1a6ac3;
  color: #fff;
}
.cal-day.sel {
  background: #1a6ac3 !important;
  color: #fff !important;
}
.cal-day.off {
  color: #ccc;
}
.cal-day.dot {
  position: relative;
}
.cal-day.dot::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1a6ac3;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.cal-day.sel.dot::after {
  background: #fff;
}

/* Mini calendar in step 2 */
.mini-cal .cal-day {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

/* ── Slots ── */
.slots-scroll {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 2px;
}
.slots-scroll::-webkit-scrollbar {
  width: 3px;
}
.slots-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.slot {
  border: 1.5px solid #1a6ac3;
  border-radius: 6px;
  color: #1a6ac3;
  padding: 9px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
}
.slot:hover {
  background: #e8f1fc;
}
.slot.picked {
  background: #5f6368;
  color: #fff;
  border-color: #5f6368;
}
.slot-pair {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}
.slot-pair .slot {
  flex: 1;
  margin: 0;
}
.slot-next {
  background: #1a6ac3;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

/* ── Timezone row ── */
.tz-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

/* ── Back button ── */
.back-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-btn:hover {
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .left-pane {
    border-bottom: 1px solid #e5e5e5;
  }

  .slots-scroll {
    display: flex;
    gap: 10px;
  }

  button .meet-btn-text {
    display: none;
  }

  .schedule-meet .btn-primary {
    padding: 15px 24px;
    font-size: 24px;
    border-radius: 50px;

    transition: all 0.2s ease;
  }
}
@media (max-width: 525px) {
  .schedule-meet .btn-primary {
    padding: 10px 16px;
    font-size: 20px;

    transition: all 0.2s ease;
  }
}
