/* Schedly 離脱確認ダイアログ */

:root {
  --schedly-primary: #f97316;
}

#schedly-exit-confirm {
  display: none;
  position: fixed;
  z-index: 10002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

#schedly-exit-confirm-content {
  width: 520px;
  max-width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

#schedly-exit-confirm-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

#schedly-exit-confirm-desc {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

#schedly-exit-confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 8px;
}

.schedly-exit-btn {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  background: #fff;
  color: #0f172a;
}

.schedly-exit-btn-primary {
  background: var(--schedly-primary);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

.schedly-exit-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.18);
}
