/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --sb-brand: #1f5e48;
  --sb-brand-50: #e6efeb;
  --sb-accent: #4a8fb1;
  --sb-sun: #c99030;
  --sb-warn: #c04b3a;
  --sb-safe: #2e8559;
  --sb-ink: #14110c;
  --sb-ink-soft: #4b4538;
  --sb-ink-mute: #8c8576;
  --sb-bg: #f7f4ed;
  --sb-bg-soft: #efebe0;
  --sb-line: #ddd6c4;
  --sb-line-soft: #e8e2d2;
  --sb-radius: 16px;
  --sb-shadow-sm: 0 1px 2px #14110c0f, 0 1px 3px #14110c0a;
}

.guardianTheme {
  --guardian-brand: #8a4b38;
  --guardian-brand-soft: #f7ebe6;
  --guardian-brand-hover: #efd9cf;
  --guardian-line: #e3c5b8;
}

.wardHighContrast {
  --sb-ink: #050505;
  --sb-ink-soft: #1f1a14;
  --sb-ink-mute: #544736;
  --sb-line: #b9a98c;
  --sb-line-soft: #cabd9e;
}

html {
  height: 100vh;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  background: var(--sb-bg);
  color: var(--sb-ink);
  margin: 0;
  padding: 0;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.layout {
  min-height: 100vh;
}

/* [project]/src/components/PushNotificationListener.module.css [app-client] (css) */
.PushNotificationListener-module__YQWcsq__toastArea {
  z-index: 100;
  gap: 10px;
  width: min(360px, 100vw - 36px);
  display: grid;
  position: fixed;
  bottom: 18px;
  right: 18px;
}

.PushNotificationListener-module__YQWcsq__toast {
  border: 1px solid var(--sb-line-soft);
  color: var(--sb-ink);
  background: #fff;
  border-radius: 14px;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  display: flex;
  position: relative;
  box-shadow: 0 8px 24px #14110c1a, 0 16px 48px #14110c14;
}

.PushNotificationListener-module__YQWcsq__toast.PushNotificationListener-module__YQWcsq__actionAlert {
  border-color: #1f5e483d;
  box-shadow: 0 10px 30px #1f5e4824, 0 18px 52px #14110c1a;
}

.PushNotificationListener-module__YQWcsq__toastContent {
  min-width: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  background: none;
  border: 0;
  flex: 1;
  gap: 6px;
  padding: 2px 0 2px 4px;
  display: grid;
}

div.PushNotificationListener-module__YQWcsq__toastContent {
  cursor: default;
}

.PushNotificationListener-module__YQWcsq__toast:hover, .PushNotificationListener-module__YQWcsq__toast:focus-within {
  background: var(--sb-bg);
}

.PushNotificationListener-module__YQWcsq__title {
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.PushNotificationListener-module__YQWcsq__dismissButton {
  width: 24px;
  height: 24px;
  color: var(--sb-ink-mute);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  flex-shrink: 0;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  display: grid;
}

.PushNotificationListener-module__YQWcsq__dismissButton:hover, .PushNotificationListener-module__YQWcsq__dismissButton:focus-visible {
  background: var(--sb-line-soft);
  color: var(--sb-ink);
  outline: none;
}

.PushNotificationListener-module__YQWcsq__body {
  color: var(--sb-ink-soft);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.PushNotificationListener-module__YQWcsq__error {
  color: var(--sb-warn);
  background: #fbe5e0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.PushNotificationListener-module__YQWcsq__actionRow {
  gap: 8px;
  margin-top: 4px;
  display: flex;
}

.PushNotificationListener-module__YQWcsq__acceptButton, .PushNotificationListener-module__YQWcsq__refuseButton {
  cursor: pointer;
  border: 0;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 850;
  display: inline-flex;
}

.PushNotificationListener-module__YQWcsq__acceptButton {
  background: var(--sb-brand);
  color: #fff;
}

.PushNotificationListener-module__YQWcsq__refuseButton {
  color: var(--sb-warn);
  background: #fbe5e0;
}

.PushNotificationListener-module__YQWcsq__acceptButton:disabled, .PushNotificationListener-module__YQWcsq__refuseButton:disabled {
  cursor: not-allowed;
  opacity: .55;
}

@media (max-width: 520px) {
  .PushNotificationListener-module__YQWcsq__toastArea {
    width: calc(100vw - 24px);
    bottom: 12px;
    right: 12px;
  }

  .PushNotificationListener-module__YQWcsq__actionRow {
    flex-direction: column;
  }

  .PushNotificationListener-module__YQWcsq__acceptButton, .PushNotificationListener-module__YQWcsq__refuseButton {
    width: 100%;
  }
}

/*# sourceMappingURL=src_03i8rr6._.css.map*/