/* Schedule page fast-booking fallback */
.schedule-fast-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
}

.schedule-fast-actions .btn {
  min-width: 180px;
}

.schedule-embed-placeholder {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.24);
}

.schedule-embed-placeholder h3 {
  margin-bottom: 8px;
}

.schedule-embed-placeholder .muted {
  max-width: 540px;
  margin: 0 auto;
}

.schedule-load-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.schedule-cal-embed.is-loaded {
  display: grid;
  gap: 20px;
}

.schedule-cal-frame {
  width: 100%;
  min-height: 660px;
  height: min(760px, calc(100vh - 120px));
  border: 0;
  border-radius: 16px;
  background: var(--panel);
}

@media (max-width: 620px) {
  .schedule-fast-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .schedule-fast-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .schedule-embed-placeholder {
    padding: 22px 16px;
  }

  .schedule-cal-frame {
    min-height: 600px;
    height: 600px !important;
    border-radius: 12px;
  }
}
