@import "https://cdn.simplecss.org/simple.min.css";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --sans-font: Pretendard, "Pretendard Variable", "Noto Sans KR", Inter, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --standard-border-radius: 12px;
  --bg: #fff;
  --accent-bg: #eef3fb;
  --text: #172033;
  --text-light: #667085;
  --border: #dbe3ef;
  --accent: #3157d5;
  --accent-hover: #2443ad;
  --accent-text: #fff;
  --disabled: #e6eaf0;
  --navy: #0b1730;
  --navy-soft: #14264a;
  --surface: #f4f7fb;
  --success: #0f7a5a;
  --warning: #a45108;
  --shadow: 0 10px 30px #1f2d4c12;
}

body {
  background: radial-gradient(circle at 15% 0%, #4d70e01a, transparent 26rem),
    var(--surface);
  grid-template-columns: 1fr;
  min-width: 320px;
  font-size: 1rem;
  line-height: 1.65;
}

body > * {
  grid-column: 1 / -1;
}

h1, h2, h3 {
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 1rem 0;
}

a {
  text-underline-offset: .2em;
}

button, .button {
  border-radius: 10px;
  min-height: 42px;
  font-size: .9rem;
  font-weight: 750;
}

input, select, textarea {
  border-color: #cbd6e5;
  font-size: .95rem;
}

label {
  color: #344054;
  font-size: .9rem;
  font-weight: 700;
}

.site-header {
  z-index: 50;
  text-align: left;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #ffffffe6;
  border: 0;
  border-bottom: 1px solid #cfd9e8d9;
  padding: 0;
  position: sticky;
  top: 0;
}

.site-header-inner {
  align-items: center;
  gap: 1.5rem;
  width: min(1180px, 100% - 3rem);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
}

.site-brand {
  color: var(--navy);
  flex: none;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  display: inline-flex;
}

.site-brand-mark {
  color: #fff;
  background: linear-gradient(145deg, #446be2, #2444b8);
  border-radius: 11px;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: .75rem;
  font-weight: 850;
  display: grid;
  box-shadow: 0 10px 20px #3157d533;
}

.site-brand > span:last-child {
  flex-direction: column;
  line-height: 1.1;
  display: flex;
}

.site-brand strong {
  font-size: 1rem;
}

.site-brand small {
  color: var(--text-light);
  letter-spacing: .04em;
  margin-top: .22rem;
  font-size: .65rem;
  font-weight: 650;
}

.site-navigation {
  flex: auto;
  justify-content: center;
  gap: .15rem;
  padding: 0;
  display: flex;
}

.site-navigation a {
  color: #475467;
  white-space: nowrap;
  border: 0;
  border-radius: 8px;
  margin: 0;
  padding: .5rem .65rem;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}

.site-navigation a:hover {
  background: var(--accent-bg);
  color: var(--accent);
}

.site-auth-links, .site-session {
  flex: none;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.site-auth-links > a:not(.button) {
  color: #475467;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-auth-links .button {
  align-items: center;
  margin: 0;
  display: inline-flex;
}

.site-user {
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  display: flex;
}

.site-user small {
  color: var(--text-light);
  font-size: .65rem;
}

.site-user strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 7rem;
  font-size: .85rem;
  overflow: hidden;
}

.site-session-form {
  margin: 0;
}

.quiet-button, .secondary-button {
  color: #344054;
  background: #fff;
  border-color: #cbd6e5;
}

.quiet-button {
  min-height: 38px;
  margin: 0;
  font-size: .8rem;
}

.site-content {
  width: 100%;
}

.site-content > main, .admin-shell > main {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.site-content main > header {
  background: radial-gradient(circle at 90% 10%, #5d7ee147, transparent 17rem),
    linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 24px 60px #09173429;
}

.site-content main > header h1 {
  color: #fff;
  margin: .2rem 0 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.site-content main > header p {
  color: #cbd7f2;
  margin: 0;
}

.site-content main > header p:first-child {
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 800;
}

.site-content main > section, .admin-shell main > section {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fffffff0;
  border-radius: 16px;
  margin: 1rem 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.site-content section > h2:first-child {
  color: var(--navy);
  margin-top: 0;
}

article {
  border-color: var(--border);
  background: #fff;
}

article > header {
  background: none;
  border: 0;
  margin-bottom: .8rem;
  padding: 0;
}

article h2, article h3 {
  color: var(--navy);
  margin: 0;
}

article p {
  white-space: pre-wrap;
}

main > ul, section > ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
  display: grid;
}

main > ul article, section > ul article {
  height: 100%;
  margin: 0;
}

dl {
  grid-template-columns: minmax(8rem, .65fr) minmax(0, 1.35fr);
  margin: 0;
  display: grid;
}

dt, dd {
  border-bottom: 1px solid #e7ecf3;
  margin: 0;
  padding: .7rem 0;
}

dt {
  font-size: .86rem;
  font-weight: 700;
}

dd {
  color: var(--navy);
  font-weight: 750;
}

dt:last-of-type, dd:last-of-type {
  border-bottom: 0;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.table-scroll table {
  background: #fff;
  width: 100%;
  min-width: 560px;
  margin: 0;
  font-size: .9rem;
}

p[aria-live="polite"]:not(:empty), .page-note, .empty-state, .success-note {
  border-radius: 10px;
  padding: .85rem 1rem;
  font-size: .88rem;
}

p[aria-live="polite"]:not(:empty) {
  color: #27408f;
  background: #eef3ff;
  border: 1px solid #b9c8f2;
  font-weight: 650;
}

p[aria-live="polite"]:empty {
  display: none;
}

.page-note {
  color: #526174;
  background: #f8fafc;
  border: 1px solid #d9e2ef;
}

.page-note:before {
  color: var(--accent);
  content: "ℹ";
  margin-right: .4rem;
}

.empty-state {
  color: var(--text-light);
  text-align: center;
  border: 1px dashed #c7d2e3;
}

.success-note {
  color: var(--success);
  background: #eaf8f2;
  border: 1px solid #b7dfd1;
  font-weight: 700;
}

.page-links {
  color: var(--text-light);
  margin-top: 1.5rem;
  font-size: .85rem;
}

main > nav {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 1rem 0;
  padding: .65rem;
  display: flex;
}

main > nav a {
  padding: .4rem .65rem;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.admin-navigation {
  border: 1px solid var(--border);
  width: min(1120px, 100% - 3rem);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 14px;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto 0;
  padding: 1rem 1.2rem;
  display: flex;
}

.admin-navigation > div {
  flex-direction: column;
  display: flex;
}

.admin-navigation small {
  color: var(--text-light);
  font-size: .7rem;
}

.admin-navigation > span {
  flex-wrap: wrap;
  gap: .35rem;
  display: flex;
}

.admin-navigation a {
  color: #475467;
  padding: .4rem .6rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  width: min(1180px, 100% - 3rem);
  color: var(--text-light);
  text-align: left;
  background: none;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 2.5rem 0;
  display: flex;
}

.site-footer p {
  margin: .7rem 0 0;
  font-size: .8rem;
}

.site-footer nav {
  gap: 1rem;
  display: flex;
}

.site-footer nav a {
  color: var(--text-light);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}

.auth-page {
  max-width: 620px;
}

.auth-form {
  gap: 1rem;
  margin: 0;
  display: grid;
}

.auth-form > div {
  gap: .35rem;
  display: grid;
}

.auth-form input, .auth-form button {
  width: 100%;
  margin: 0;
}

.auth-switch {
  color: var(--text-light);
  text-align: center;
  font-size: .85rem;
}

.dashboard-overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
  display: grid;
}

.dashboard-overview > section {
  border: 1px solid var(--border);
  min-width: 0;
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.card-heading {
  background: none;
  border: 0;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
}

.card-heading p, .card-heading h2, .card-heading small {
  margin: 0;
}

.card-heading p, .eyebrow {
  color: #6377ae;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 850;
}

.card-heading h2 {
  color: var(--navy);
  font-size: 1.35rem;
}

.card-heading > small {
  color: var(--text-light);
  font-size: .78rem;
}

.status-badge, .count-badge, .important-badge {
  border-radius: 999px;
  flex: none;
  padding: .28rem .58rem;
  font-size: .68rem;
  font-weight: 800;
}

.status-badge {
  color: var(--success);
  background: #e4f6ef;
}

.count-badge {
  color: #3c55a2;
  background: #eef3ff;
}

.important-badge {
  color: var(--warning);
  background: #fff0d4;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

.feature-card, .quick-access-grid > a {
  min-height: 170px;
  color: var(--text);
  background: #fff;
  border: 1px solid #dfe6f1;
  border-radius: 13px;
  flex-direction: column;
  padding: 1.1rem;
  text-decoration: none;
  transition: transform .16s, border-color .16s, box-shadow .16s;
  display: flex;
}

.feature-card:hover, .quick-access-grid > a:hover {
  border-color: #9fb1e8;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px #263f7c1a;
}

.feature-card span, .quick-access-grid span {
  color: #7182ac;
  text-transform: uppercase;
  font-size: .67rem;
  font-weight: 850;
}

.feature-card strong, .quick-access-grid strong {
  color: var(--navy);
  margin-top: .65rem;
  font-size: 1.05rem;
}

.feature-card small, .quick-access-grid small {
  color: var(--text-light);
  font-size: .77rem;
}

.feature-card b, .quick-access-grid b {
  color: var(--accent);
  margin-top: auto;
  font-size: .75rem;
}

.site-content > .home-page {
  width: min(1180px, 100% - 3rem);
  padding-top: 2rem;
}

.home-page > section {
  margin: 1.25rem 0;
}

.home-page > .home-hero {
  background: radial-gradient(circle at 85% 15%, #547cf075, transparent 22rem),
    var(--navy);
  color: #fff;
  border: 0;
  border-radius: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: 570px;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 70px #0917342e;
}

.home-hero-copy, .today-board {
  z-index: 1;
  position: relative;
}

.eyebrow {
  margin: 0 0 .55rem;
}

.home-hero .eyebrow {
  color: #9fb7ff;
}

.home-hero h1 {
  color: #fff;
  letter-spacing: -.065em;
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.45rem, 5.2vw, 4.2rem);
  line-height: 1.12;
}

.home-hero h1 span {
  color: #9fb8ff;
}

.home-hero-description {
  color: #ccd7ef;
  max-width: 42rem;
  font-size: 1.02rem;
}

.hero-actions, .hero-points {
  flex-wrap: wrap;
  gap: .7rem;
  display: flex;
}

.hero-actions {
  margin-top: 1.6rem;
}

.hero-actions .button {
  align-items: center;
  margin: 0;
  display: inline-flex;
}

.home-hero .secondary-button {
  color: #fff;
  background: #ffffff14;
  border-color: #ffffff38;
}

.hero-points {
  color: #aebbd6;
  margin: 1.3rem 0 0;
  padding: 0;
  font-size: .78rem;
  list-style: none;
}

.hero-points li:before {
  color: #80a0ff;
  content: "✓";
  margin-right: .35rem;
}

.today-board {
  float: none;
  width: 100%;
  color: var(--text);
  background: #fffffff7;
  border-color: #ffffff29;
  border-radius: 20px;
  margin: 0;
  padding: 1.3rem;
  box-shadow: 0 30px 70px #00000038;
}

.today-board > header, .restaurant-card > header, .meeting-card > header, .notice-card > header, .question-card > header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  display: flex;
}

.today-board > header {
  border-bottom: 1px solid #e5eaf2;
  padding-bottom: 1rem;
}

.today-board header p, .today-board header strong {
  margin: 0;
}

.today-board header p {
  color: var(--text-light);
  font-size: .72rem;
}

.live-badge {
  color: var(--success);
  background: #e4f6ef;
  border-radius: 999px;
  padding: .28rem .55rem;
  font-size: .68rem;
  font-weight: 800;
}

.attendance-preview {
  background: var(--accent-bg);
  border-radius: 13px;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
  display: flex;
}

.attendance-preview > div {
  flex-direction: column;
  display: flex;
}

.attendance-preview small {
  color: var(--text-light);
  font-size: .72rem;
}

.attendance-preview strong {
  color: var(--accent);
  font-size: 1.15rem;
}

.status-dot {
  background: var(--success);
  border: 3px solid #bdebdc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 5px #e4f6ef;
}

.today-board dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
}

.today-board dl > div {
  border: 1px solid #e5eaf2;
  border-radius: 10px;
  padding: .75rem;
}

.today-board dt, .today-board dd {
  border: 0;
  padding: 0;
  font-size: .72rem;
}

.board-note {
  background: #fff7e8;
  border-radius: 10px;
  gap: .7rem;
  margin-top: 1rem;
  padding: .75rem;
  display: flex;
}

.board-note > span {
  color: #8a4707;
  background: #ffdf9b;
  border-radius: 8px;
  flex: none;
  place-items: center;
  width: 28px;
  height: 28px;
  font-weight: 900;
  display: grid;
}

.board-note p, .board-note strong, .board-note small {
  margin: 0;
  display: block;
}

.board-note strong {
  font-size: .76rem;
}

.board-note small {
  color: #8c6946;
  font-size: .65rem;
}

.section-heading {
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.4rem;
  display: flex;
}

.section-heading h2, .section-heading p {
  margin: 0;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.section-heading > p {
  max-width: 30rem;
  color: var(--text-light);
  font-size: .9rem;
}

.quick-access-grid, .service-grid, .workflow-list {
  gap: 1rem;
  display: grid;
}

.quick-access-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid, .workflow-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article {
  min-height: 230px;
  margin: 0;
  padding: 1.4rem;
}

.service-grid h3 {
  margin-top: 1.5rem;
}

.service-grid p {
  color: var(--text-light);
  font-size: .9rem;
}

.service-number {
  color: #9aabd1;
  font-size: .72rem;
  font-weight: 850;
}

.home-page > .workflow-section {
  background: radial-gradient(circle at 100% 0%, #4e6fd540, transparent 18rem),
    var(--navy);
  color: #fff;
}

.workflow-section .eyebrow {
  color: #8fafff;
}

.workflow-section .section-heading h2 {
  color: #fff;
}

.workflow-list {
  background: #ffffff21;
  border: 1px solid #ffffff21;
  border-radius: 14px;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.workflow-list li {
  background: #0b1730f0;
  padding: 1.4rem;
}

.workflow-list span, .workflow-list strong {
  display: block;
}

.workflow-list span {
  color: #90aaff;
  font-size: .74rem;
  font-weight: 850;
}

.workflow-list strong {
  margin-top: .8rem;
}

.workflow-list p {
  color: #afbdd8;
  margin-bottom: 0;
  font-size: .82rem;
}

.home-page > .home-cta {
  background: linear-gradient(135deg, #eef3ff, #fff);
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  display: flex;
}

.home-cta h2, .home-cta p {
  margin: 0;
}

.home-cta .button {
  flex: none;
  align-items: center;
  margin: 0;
  display: inline-flex;
}

.filter-form {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: .8rem;
  margin-bottom: 1rem;
  padding: 1rem;
  display: grid;
}

.compact-filter {
  grid-template-columns: minmax(180px, 280px) auto;
  justify-content: start;
}

.filter-form > div, .form-field {
  gap: .35rem;
  min-width: 0;
  display: grid;
}

.filter-form select, .form-field input, .form-field select, .form-field textarea {
  width: 100%;
  margin: 0;
}

.stack-form {
  gap: 1rem;
  margin: 0;
  display: grid;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.form-field--full {
  grid-column: 1 / -1;
}

.split-fields {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: .5rem;
  display: grid;
}

.stack-form > button {
  justify-self: start;
}

.form-actions, .agreement-form, .card-actions {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.form-actions label, .agreement-form label {
  align-items: center;
  gap: .5rem;
  margin: 0;
  display: flex;
}

.form-actions input, .agreement-form input {
  margin: 0;
}

.agreement-form, .location-form {
  border: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 12px;
  margin: 1rem 0;
  padding: 1rem;
}

.location-form {
  gap: .5rem;
  max-width: 34rem;
  display: grid;
}

.location-form button {
  width: 100%;
}

.inline-action {
  margin: 0;
}

.inline-action button {
  min-height: 36px;
  margin: 0;
  font-size: .78rem;
}

.result-summary, .content-meta, .meeting-host, .meeting-participants {
  color: var(--text-light);
  font-size: .8rem;
}

.restaurant-map {
  border: 1px solid var(--border);
  background: var(--accent-bg);
  border-radius: 12px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.restaurant-card, .meeting-card {
  flex-direction: column;
  display: flex;
}

.restaurant-card .eyebrow, .meeting-card .eyebrow, .notice-card .eyebrow, .question-card .eyebrow {
  margin-bottom: .2rem;
}

.restaurant-price, .meeting-meta {
  color: #344054;
  font-size: .88rem;
  font-weight: 700;
}

.restaurant-card address {
  color: var(--text-light);
  font-size: .82rem;
  font-style: normal;
}

.card-actions {
  border-top: 1px solid #e8edf4;
  margin-top: auto;
  padding-top: 1rem;
}

.card-actions > a {
  font-size: .78rem;
  font-weight: 750;
}

.meeting-capacity {
  color: var(--text-light);
  margin: .8rem 0;
  font-size: .72rem;
}

.meeting-capacity progress {
  width: 100%;
}

.question-card h3 a {
  color: var(--navy);
  text-decoration: none;
}

.question-detail {
  margin-top: 0;
  padding: clamp(1.4rem, 4vw, 2rem);
}

.question-detail > header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.answer-card {
  border-left: 4px solid #d6deeb;
}

.accepted-answer {
  background: #f2fbf7;
  border-color: #87c9b4;
}

.qr-content {
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  display: grid;
}

.qr-content img {
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 100%;
  margin: 0;
}

.qr-content .button {
  align-items: center;
  margin: 0;
  display: inline-flex;
}

@media (max-width: 900px) {
  .site-header-inner {
    flex-wrap: wrap;
    gap: .75rem 1rem;
    padding: .8rem 0;
  }

  .site-navigation {
    flex-basis: 100%;
    order: 3;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
  }

  .site-auth-links, .site-session {
    margin-left: auto;
  }

  .home-page > .home-hero {
    grid-template-columns: 1fr;
  }

  .today-board {
    max-width: 34rem;
  }

  .quick-access-grid, .service-grid, .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-list {
    grid-template-columns: 1fr;
  }

  .filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .site-header-inner, .site-footer, .site-content > main, .admin-shell > main, .admin-navigation, .site-content > .home-page {
    width: min(100% - 2rem, 1120px);
  }

  .site-brand small, .site-user small {
    display: none;
  }

  .site-content > main, .admin-shell > main {
    padding: 1.5rem 0 3.5rem;
  }

  .site-content main > header {
    border-radius: 16px;
  }

  main > ul, section > ul, .quick-access-grid, .service-grid, .feature-grid, .dashboard-overview, .filter-form, .form-grid, .split-fields, .qr-content, dl, .today-board dl {
    grid-template-columns: 1fr;
  }

  dt {
    border-bottom: 0;
    padding-bottom: 0;
  }

  dd {
    padding-top: .1rem;
  }

  .site-footer, .admin-navigation, .section-heading, .home-page > .home-cta, .form-actions, .agreement-form, .card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page > .home-hero {
    border-radius: 20px;
    min-height: auto;
    padding: 1.6rem;
  }

  .home-hero h1 {
    font-size: 2.35rem;
  }

  .filter-form button, .stack-form > button, .form-actions button, .agreement-form button, .inline-action button, .home-cta .button, .qr-content .button {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, :before, :after {
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .site-footer, .admin-navigation, button {
    display: none !important;
  }

  body, .admin-shell > main {
    background: #fff;
    width: 100%;
  }

  .admin-shell > main {
    padding: 0;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/