/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --bg: #0b0d10;
  --surface: #14181d;
  --border: #232831;
  --text: #e7ecf3;
  --muted: #9aa3b2;
  --accent: #7ab7ff;
  --error: #ff7a7a;
  --success: #7ddca0;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  color: var(--text);
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: none;
  min-height: calc(100dvh + 1px);
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

body {
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.gv-install-banner {
  left: 0;
  right: 0;
  bottom: calc(64px + env(safe-area-inset-bottom, 0));
  z-index: 60;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  gap: .75rem;
  max-width: 480px;
  margin: 0 auto;
  padding: .75rem .875rem;
  display: flex;
  position: fixed;
  box-shadow: 0 10px 32px #00000073;
}

.gv-install-banner__text {
  color: var(--text);
  flex: 1;
  font-size: .9rem;
  line-height: 1.35;
}

.gv-install-banner__actions {
  flex-shrink: 0;
  gap: .5rem;
  display: flex;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main {
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

h1 {
  letter-spacing: -.01em;
  margin: 0 0 1rem;
  font-size: 1.6rem;
}

h2 {
  margin: 1.5rem 0 .75rem;
  font-size: 1.1rem;
}

p {
  color: var(--muted);
  margin: .5rem 0;
}

.gv-form, form.gv-form {
  flex-direction: column;
  gap: .75rem;
  margin: 1rem 0;
  display: flex;
}

.gv-form label {
  color: var(--muted);
  flex-direction: column;
  gap: .25rem;
  font-size: .85rem;
  display: flex;
}

.gv-form input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
  border-radius: 6px;
  padding: .6rem .8rem;
}

.gv-form input:focus {
  border-color: var(--accent);
  outline: none;
}

.gv-about-venue {
  flex-direction: column;
  gap: 8px;
  margin: .75rem 0 0;
  display: flex;
}

.gv-about-venue-line {
  color: #ffffffeb;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.gv-about-venue-line.expanded {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

.gv-about-venue-more-row {
  justify-content: flex-end;
  display: flex;
}

.gv-inline-link {
  appearance: none;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
}

.gv-inline-link:hover, .gv-inline-link:focus-visible {
  outline: none;
  text-decoration: underline;
}

.gv-about-venue-body {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.gv-about-venue-facts {
  grid-template-columns: max-content 1fr;
  gap: 4px 12px;
  margin: 6px 0 0;
  font-size: .85rem;
  display: grid;
}

.gv-about-venue-facts dt {
  color: var(--fg-muted, #ffffff8c);
  font-weight: 600;
}

.gv-about-venue-facts dd {
  word-break: break-word;
  margin: 0;
}

.gv-about-venue-tags-label {
  margin-top: 8px;
  font-size: .85rem;
  font-weight: 600;
}

.gv-about-venue-tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  display: flex;
}

.gv-venue-tags-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  display: flex;
}

.gv-chip.gv-chip-vote-up {
  color: #a6f0c0;
  background: #43c87d2e;
  border-color: #43c87d73;
}

.gv-chip.gv-chip-vote-down {
  color: #ffb3b3;
  background: #ff8d8d2e;
  border-color: #ff8d8d73;
}

.gv-btn.gv-btn-vote-up-active {
  outline-offset: 2px;
  outline: 2px solid #43c87d;
}

.gv-btn.gv-btn-vote-down-active {
  outline-offset: 2px;
  outline: 2px solid #ff8d8d;
}

.gv-input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
  border-radius: 6px;
  width: 100%;
  padding: .6rem .8rem;
}

.gv-input:focus {
  border-color: var(--accent);
  outline: none;
}

.gv-btn {
  background: var(--accent);
  color: #0b0d10;
  cursor: pointer;
  font-weight: 600;
  font: inherit;
  text-align: center;
  border: none;
  border-radius: 6px;
  padding: .7rem 1rem;
  text-decoration: none;
  display: inline-block;
}

.gv-btn:disabled, .gv-btn[aria-disabled="true"] {
  opacity: .6;
  cursor: not-allowed;
}

.gv-btn.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.gv-btn.gv-btn-quiet {
  color: var(--accent);
  background: #7ab7ff1f;
  border: 1px solid #7ab7ff66;
  padding: .5rem .9rem;
  font-weight: 600;
}

.gv-btn.gv-btn-quiet:hover {
  background: #7ab7ff33;
}

.gv-btn.gv-btn-icon {
  justify-content: center;
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.gv-btn.gv-btn-icon > svg {
  flex: none;
}

.gv-error {
  color: var(--error);
  background: #ff7a7a14;
  border: 1px solid #ff7a7a4d;
  border-radius: 6px;
  padding: .5rem .75rem;
  font-size: .9rem;
}

.gv-success {
  color: var(--success);
  background: #7ddca014;
  border: 1px solid #7ddca04d;
  border-radius: 6px;
  padding: .5rem .75rem;
  font-size: .9rem;
}

.gv-meta {
  color: var(--muted);
  font-size: .85rem;
}

.gv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 1rem 0;
  padding: 1rem 1.25rem;
}

:root {
  --gv-app-frame: 100vw;
}

@media (min-width: 600px) {
  :root {
    --gv-app-frame: min(100vw, 760px);
  }
}

@media (min-width: 1100px) {
  :root {
    --gv-app-frame: 560px;
  }
}

.gv-topbar {
  width: 100%;
  max-width: var(--gv-app-frame);
  z-index: 40;
  padding: .5rem .75rem;
  padding-top: calc(.5rem + env(safe-area-inset-top, 0));
  pointer-events: none;
  background: none;
  align-items: center;
  gap: .5rem;
  display: flex;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

body:not([data-fullbleed="true"]) .gv-topbar {
  background: var(--bg);
  pointer-events: auto;
}

body:not([data-fullbleed="true"]) .gv-topbar-brand {
  text-shadow: none;
}

body:not([data-fullbleed="true"]) .gv-hamburger {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: none;
  border-color: #0000;
}

body {
  padding-top: calc(3.25rem + env(safe-area-inset-top, 0));
}

body[data-fullbleed="true"] {
  padding-top: 0;
}

.gv-topbar > * {
  pointer-events: auto;
}

.gv-hamburger {
  top: calc(.5rem + env(safe-area-inset-top, 0));
  left: max(.75rem, calc(50vw - var(--gv-app-frame) / 2 + .75rem));
  z-index: 110;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.2rem;
  font: inherit;
  background: #14181d73;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  display: inline-flex;
  position: fixed;
}

.gv-hamburger.is-open {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: #0000;
  background: none;
  border-color: #0000;
}

.gv-hamburger.is-open > span {
  opacity: 0;
}

.gv-topbar-brand {
  text-align: center;
  color: #fff;
  letter-spacing: .02em;
  text-shadow: 0 1px 2px #000000d9, 0 0 4px #0000008c;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  flex: 1;
  font-weight: 700;
  text-decoration: none;
}

.gv-menu-overlay {
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  background: #00000080;
  transition: opacity .18s ease-out;
  position: fixed;
  inset: 0;
}

.gv-menu-overlay[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.gv-menu-sheet {
  z-index: 100;
  background: var(--surface);
  border-right: 1px solid var(--border);
  will-change: transform;
  width: min(85vw, 320px);
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
  flex-direction: column;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  position: fixed;
  inset: 0 auto 0 0;
  transform: translate3d(-100%, 0, 0);
}

.gv-menu-sheet[data-open="true"] {
  transform: translate3d(0, 0, 0);
}

.gv-menu-header {
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: .15rem;
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  position: relative;
}

.gv-menu-close {
  border: 1px solid var(--border);
  width: 2rem;
  height: 2rem;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  background: #0000004d;
  border-radius: 999px;
  font-size: .85rem;
  position: absolute;
  top: .75rem;
  right: .75rem;
}

.gv-menu-list {
  flex-direction: column;
  flex: 1;
  padding: .5rem 0;
  display: flex;
}

.gv-menu-item {
  color: var(--text);
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.25rem;
  font-size: 1.05rem;
  text-decoration: none;
  display: flex;
}

.gv-menu-item:hover {
  background: #7ab7ff14;
  text-decoration: none;
}

.gv-menu-item.active {
  color: var(--accent);
  background: #7ab7ff1f;
}

.gv-menu-emoji {
  text-align: center;
  width: 1.4rem;
  font-size: 1.1rem;
}

.gv-menu-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
}

.gv-menu-footer .gv-btn {
  width: 100%;
}

.gv-tappable {
  touch-action: manipulation;
}

* {
  -webkit-tap-highlight-color: transparent;
}

button:focus, a:focus, [role="button"]:focus, .gv-tappable:focus {
  outline: none;
}

.gv-menu-item {
  -webkit-tap-highlight-color: #7ab7ff29;
}

.gv-quick-discover {
  top: calc(.5rem + env(safe-area-inset-top, 0));
  right: max(.75rem, calc(50vw - var(--gv-app-frame) / 2 + .75rem));
  z-index: 41;
  background: var(--surface);
  border: 1px solid var(--border);
  height: 2.5rem;
  color: var(--text);
  border-radius: 999px;
  align-items: center;
  gap: .4rem;
  padding: 0 .85rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  position: fixed;
}

.gv-quick-discover:hover, .gv-quick-discover:focus, .gv-quick-discover:focus-visible, .gv-quick-discover:active {
  text-decoration: none;
}

main.gv-discover-main {
  max-width: 480px;
  margin: 0 auto;
  padding: .85rem 1rem 6rem;
}

main.gv-discover-main > h1 {
  margin: 0 0 .35rem;
}

main.gv-discover-main > h1 + .gv-meta {
  margin-top: 0;
  margin-bottom: .6rem;
}

main.gv-discover-fullbleed {
  width: 100%;
  max-width: var(--gv-app-frame);
  background: var(--bg);
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
}

@media (min-width: 520px) {
  main.gv-discover-fullbleed {
    box-shadow: 0 0 0 1px var(--border),
      0 18px 60px #00000080;
  }
}

.gv-discover-fullbleed .gv-deck-host {
  padding: 0 0 calc(6.8rem + env(safe-area-inset-bottom, 0));
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0;
}

.gv-discover-fullbleed .gv-deck-buttons {
  width: 100%;
  max-width: var(--gv-app-frame);
  left: 50%;
  bottom: calc(3.8rem + env(safe-area-inset-bottom, 0));
  z-index: 41;
  pointer-events: none;
  padding: 0 1rem;
  position: fixed;
  transform: translateX(-50%);
}

.gv-discover-fullbleed .gv-deck-buttons > * {
  pointer-events: auto;
}

.gv-filter-icon {
  top: calc(.5rem + env(safe-area-inset-top, 0));
  z-index: 41;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  height: 2.5rem;
  font-size: .85rem;
  font: inherit;
  background: #14181d73;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  align-items: center;
  gap: .4rem;
  padding: 0 .75rem 0 .6rem;
  font-weight: 700;
  display: inline-flex;
  position: fixed;
  right: .75rem;
}

.gv-filter-icon-value {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.gv-filter-icon.active {
  background: var(--accent);
  color: #0b0d10;
  border-color: var(--accent);
}

.gv-image-pager {
  top: calc(2.9rem + env(safe-area-inset-top, 0));
  z-index: 41;
  pointer-events: none;
  gap: 3px;
  padding: 2px 4px;
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.gv-image-pager.inline {
  z-index: 2;
  position: absolute;
  top: .4rem;
  left: 50%;
  transform: translateX(-50%);
}

.gv-image-pager-bar {
  background: #ffffff4d;
  border-radius: 999px;
  flex: none;
  width: 14px;
  height: 2px;
  transition: background .12s ease-out;
  box-shadow: 0 1px 1px #0006;
}

.gv-image-pager-bar.active {
  background: #fffffff5;
}

.gv-detail-half {
  cursor: pointer;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  background: none;
  border: none;
  outline: none;
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
}

.gv-detail-half:focus-visible, .gv-detail-half:hover, .gv-detail-half:active {
  box-shadow: none;
  background: none;
  outline: none;
}

.gv-filters-overlay {
  top: calc(3.5rem + env(safe-area-inset-top, 0));
  z-index: 9999;
  padding: 1rem;
  padding-bottom: calc(1rem + 3.4rem + env(safe-area-inset-bottom, 0));
  overscroll-behavior: contain;
  background: #0000008c;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}

body[data-filters-open="true"] .gv-bottom-nav {
  display: none;
}

.gv-filters-overlay > .gv-card {
  width: 100%;
  max-width: 460px;
  margin: 0;
}

.gv-filters {
  position: relative;
}

.gv-filters-close {
  background: var(--bg);
  border: 1px solid var(--border);
  width: 2rem;
  height: 2rem;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-size: .9rem;
  display: inline-flex;
  position: absolute;
  top: .5rem;
  right: .5rem;
}

.gv-slider-header {
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.gv-slider-value {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.gv-slider {
  appearance: none;
  cursor: pointer;
  background: none;
  width: 100%;
  height: 24px;
  margin: .5rem 0 0;
}

.gv-slider::-webkit-slider-runnable-track {
  background: var(--border);
  border-radius: 999px;
  height: 6px;
}

.gv-slider::-moz-range-track {
  background: var(--border);
  border-radius: 999px;
  height: 6px;
}

.gv-slider::-webkit-slider-thumb {
  appearance: none;
  background: var(--accent);
  border: 2px solid #0b0d10;
  border-radius: 999px;
  width: 20px;
  height: 20px;
  margin-top: -7px;
  box-shadow: 0 1px 4px #00000080;
}

.gv-slider::-moz-range-thumb {
  background: var(--accent);
  border: 2px solid #0b0d10;
  border-radius: 999px;
  width: 20px;
  height: 20px;
  box-shadow: 0 1px 4px #00000080;
}

.gv-slider-ticks {
  color: var(--muted);
  justify-content: space-between;
  margin-top: .1rem;
  font-size: .75rem;
  display: flex;
}

.gv-tag-row {
  justify-content: flex-start;
}

.gv-tag-skeleton {
  pointer-events: none;
}

.gv-tag-skeleton > span {
  background: #ffffff0d;
  border-radius: 999px;
  width: 4rem;
  height: 1.85rem;
  display: inline-block;
}

.gv-tag-skeleton > span:nth-child(2) {
  width: 5.5rem;
}

.gv-tag-skeleton > span:nth-child(3) {
  width: 3.5rem;
}

.gv-tag-skeleton > span:nth-child(4) {
  width: 6rem;
}

.gv-tag-skeleton > span:nth-child(5) {
  width: 4.5rem;
}

.gv-chip.gv-chip-more {
  color: var(--accent);
  background: #7ab7ff1a;
  border: 1px solid #7ab7ff59;
  margin-inline-start: auto;
  font-weight: 600;
}

.gv-chip.gv-chip-more:hover {
  background: #7ab7ff29;
  border-color: #7ab7ff8c;
}

.gv-tag-more:hover {
  color: #a8d2ff;
}

.gv-tag-more.active {
  color: var(--accent);
  background: none;
  border: none;
}

.gv-units-toggle {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.gv-rewind-btn {
  right: 1.25rem;
  bottom: calc(7.8rem + env(safe-area-inset-bottom, 0));
  z-index: 42;
  color: #0b0d10;
  cursor: pointer;
  width: 2.4rem;
  height: 2.4rem;
  font: inherit;
  background: #7ab7fff2;
  border: 1px solid #7ab7ff99;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: fixed;
  box-shadow: 0 2px 6px #00000059;
}

.gv-rewind-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.gv-rewind-btn[hidden] {
  display: none;
}

.gv-discover-toolbar {
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.gv-deck-placeholder {
  aspect-ratio: 3 / 4;
  border: 1px dashed var(--border);
  max-width: 420px;
  color: var(--muted);
  text-align: center;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
}

.gv-deck-empty-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: .75rem;
  display: flex;
}

.gv-deck-empty-actions .gv-btn {
  text-align: center;
  min-width: 9rem;
  text-decoration: none;
}

.gv-deck-empty {
  text-align: center;
  width: 100%;
  height: 100%;
  color: var(--text);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  padding: 2rem 1.5rem;
  display: flex;
}

.gv-deck-empty-icon {
  font-size: 3rem;
  line-height: 1;
}

.gv-deck-empty h2 {
  margin: 0;
  font-size: 1.4rem;
}

.gv-deck-empty p {
  color: var(--muted);
  margin: 0;
}

.gv-deck-empty .gv-btn {
  min-width: 8rem;
  margin-top: .75rem;
}

.gv-deck-buttons {
  justify-content: center;
  gap: 1rem;
  max-width: 420px;
  margin: 1.25rem auto 0;
  display: flex;
}

.gv-deck-action {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
  font: inherit;
  border-radius: 999px;
  flex: 1;
  padding: .6rem 1rem;
  font-weight: 700;
}

.gv-deck-action:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.gv-deck-action.save {
  color: var(--success);
  background: #7ddca01f;
  border-color: #7ddca080;
}

.gv-deck-action.pass {
  color: #ff7a7a;
  background: #ff7a7a1f;
  border-color: #ff7a7a80;
}

.gv-deck-action.close {
  color: #fff;
  background: #14181d;
  border-color: #ffffff2e;
}

.gv-event-card[data-active="true"] {
  box-shadow: none;
}

.gv-filters section {
  flex-direction: column;
  gap: .35rem;
  margin: .75rem 0;
  display: flex;
}

.gv-filter-row {
  flex-wrap: wrap;
  gap: .35rem;
  display: flex;
}

.gv-filter-row.gv-filter-row-type {
  justify-content: flex-start;
}

.gv-btn.gv-btn-armed-warn {
  background: var(--error);
  color: #1a0707;
  border-color: var(--error);
  cursor: not-allowed;
  pointer-events: auto;
}

.gv-btn.gv-btn-armed-warn:hover {
  filter: brightness(1.05);
}

.gv-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-size: .85rem;
  font: inherit;
  border-radius: 999px;
  padding: .35rem .7rem;
}

.gv-chip.active {
  background: var(--accent);
  color: #0b0d10;
  border-color: var(--accent);
}

.gv-chip.gv-chip-quick {
  border-color: var(--accent);
  padding-left: 1.1rem;
  position: relative;
}

.gv-chip.gv-chip-quick:before {
  content: "";
  background: var(--accent);
  border-radius: 999px;
  width: .35rem;
  height: .35rem;
  position: absolute;
  top: 50%;
  left: .5rem;
  transform: translateY(-50%);
}

.gv-chip.gv-chip-quick.active:before {
  background: #0b0d10;
}

.gv-filter-actions {
  gap: .5rem;
  margin-top: 1rem;
  display: flex;
}

.gv-filter-actions .gv-btn {
  flex: 1;
}

.gv-location-row {
  border: 1px solid var(--border);
  background: var(--bg);
  width: 100%;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  text-align: left;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  padding: .55rem .75rem;
  display: flex;
}

.gv-location-row:hover, .gv-location-row:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.gv-location-value {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  font-weight: 600;
  overflow: hidden;
}

.gv-location-edit-hint {
  color: var(--accent);
  flex: none;
  margin-left: .6rem;
  font-size: .75rem;
}

.gv-location-edit {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.gv-location-edit-actions {
  flex-wrap: wrap;
  gap: .4rem;
  display: flex;
}

.gv-location-edit-actions .gv-btn {
  flex: 1;
  min-width: 6rem;
}

.gv-location-error {
  color: #ff8a8a;
  margin: 0;
}

.gv-date-range {
  flex-direction: column;
  gap: .3rem;
  margin-top: .6rem;
  display: flex;
}

.gv-date-inputs {
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.gv-date-inputs input[type="date"] {
  background: var(--bg);
  border: 1px solid var(--border);
  min-width: 7rem;
  color: var(--text);
  font: inherit;
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  border-radius: 8px;
  flex: 8rem;
  padding: .4rem .5rem;
}

.gv-date-inputs input[type="date"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.gv-confirm-overlay {
  z-index: 120;
  background: #0009;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.gv-confirm-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 100%;
  max-width: 360px;
  padding: 1.25rem;
  box-shadow: 0 20px 60px #0009;
}

.gv-confirm-message {
  color: var(--text);
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

.gv-confirm-actions {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.gv-confirm-actions .gv-btn {
  flex: 100px;
  min-width: 0;
}

.gv-detail-overlay {
  z-index: 50;
  background: #000000b3;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  animation: .16s ease-out gv-detail-fade-in;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes gv-detail-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gv-detail-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  animation: .18s cubic-bezier(.2, .8, .2, 1) gv-detail-slide-up;
  position: relative;
  overflow-y: auto;
}

.gv-detail-modal::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

@keyframes gv-detail-slide-up {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.gv-detail-close {
  color: #fff;
  cursor: pointer;
  z-index: 5;
  width: 2.25rem;
  height: 2.25rem;
  font: inherit;
  background: #0000008c;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  position: absolute;
  top: .5rem;
  right: .5rem;
}

.gv-detail-menu {
  z-index: 4;
  position: absolute;
  bottom: .5rem;
  right: .5rem;
}

.gv-detail-menu-trigger {
  color: #fff;
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  font: inherit;
  background: #0000008c;
  border: none;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
}

.gv-detail-menu-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  z-index: 6;
  border-radius: 10px;
  flex-direction: column;
  min-width: 11rem;
  padding: 4px;
  display: flex;
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  box-shadow: 0 12px 30px #00000080;
}

.gv-detail-menu-item {
  appearance: none;
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: .92rem;
}

.gv-detail-menu-item:hover, .gv-detail-menu-item:focus-visible {
  background: #7ab7ff1a;
  outline: none;
}

.gv-detail-menu-item-danger {
  color: #ff8d8d;
}

.gv-detail-menu-item-danger:hover, .gv-detail-menu-item-danger:focus-visible {
  background: #ff8d8d1a;
}

.gv-detail-menu-toast {
  top: calc(.75rem + env(safe-area-inset-top, 0));
  z-index: 200;
  color: #0b0d10;
  background: #43c87deb;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 700;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 20px #0006;
}

.gv-detail-gallery {
  background: var(--surface);
  justify-content: center;
  align-items: center;
  max-height: 70vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gv-detail-gallery > img {
  object-fit: contain;
  max-width: 100%;
  max-height: 70vh;
  display: block;
}

.gv-detail-noimg {
  width: 100%;
  height: 100%;
  color: var(--muted);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 1.25rem;
  display: flex;
}

.gv-detail-thumbs {
  gap: .25rem;
  display: flex;
  position: absolute;
  bottom: .5rem;
  left: .5rem;
  right: .5rem;
  overflow-x: auto;
}

.gv-detail-thumb {
  cursor: pointer;
  background: #0006;
  border: 2px solid #0000;
  border-radius: 6px;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  padding: 0;
  overflow: hidden;
}

.gv-detail-thumb.active {
  border-color: var(--accent);
}

.gv-detail-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.gv-detail-body {
  padding: .65rem .85rem;
  position: relative;
}

.gv-detail-body h2 {
  margin: 0 0 .25rem;
}

.gv-detail-title {
  margin: 0 0 .25rem;
  padding-right: 7.5rem;
}

.gv-detail-meta-stack {
  z-index: 1;
  pointer-events: auto;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.gv-detail-meta-stack > * {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.gv-detail-accuracy-chip {
  cursor: pointer;
  white-space: nowrap;
  border: 0;
  border-radius: 999px;
  flex: none;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  font-family: inherit;
  font-size: .74rem;
  font-weight: 700;
  display: inline-flex;
  box-shadow: 0 1px 4px #00000059;
}

.gv-detail-accuracy-chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.gv-detail-like-counter {
  color: #ff8d8df2;
  white-space: nowrap;
  letter-spacing: .01em;
  margin-top: -4px;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1;
}

.gv-detail-like-counter .gv-detail-like-heart {
  vertical-align: -1px;
  margin-right: 2px;
  font-size: 1.15rem;
  font-weight: 400;
}

.gv-detail-flag-btn {
  appearance: none;
  font: inherit;
  color: #ffffff8c;
  cursor: pointer;
  background: none;
  border: 0;
  margin: 14px 0 0;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1;
}

.gv-detail-flag-btn:hover, .gv-detail-flag-btn:focus-visible {
  color: #ffffffeb;
  outline: none;
}

.gv-detail-meta-stack > .gv-detail-rating-chip {
  margin-top: 4px;
}

.gv-detail-meta-stack > .gv-detail-flag-btn {
  margin-top: 14px;
}

.gv-detail-rating-chip {
  color: #ffd563;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  align-items: center;
  gap: 1px;
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
}

.gv-detail-rating-chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.gv-detail-rating-hint {
  color: #ffc480;
  text-align: right;
  max-width: 11rem;
  margin-top: -2px;
  font-size: .7rem;
  line-height: 1.2;
  display: inline-block;
}

.gv-poster-identity {
  align-items: center;
  gap: 6px;
  margin: 0;
  display: inline-flex;
}

.gv-poster-owner-check {
  color: #0b0d10;
  background: #7ab7ff;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
}

.gv-poster-rank {
  color: #ffd563;
  letter-spacing: .02em;
  background: #ffd5632e;
  border-radius: 999px;
  align-items: center;
  padding: 1px 7px;
  font-size: .7rem;
  font-weight: 700;
  display: inline-flex;
}

.gv-saved-empty {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 2rem 1rem;
  display: flex;
}

.gv-invite-toast {
  top: calc(.75rem + env(safe-area-inset-top, 0));
  z-index: 200;
  color: #0b0d10;
  background: #43c87deb;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 700;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 20px #0006;
}

.gv-rating-stars {
  justify-content: center;
  gap: 4px;
  padding: 4px 0 2px;
  display: flex;
}

.gv-rating-star {
  appearance: none;
  color: #ffffff59;
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px 3px;
  font-family: inherit;
  font-size: 1.9rem;
  line-height: 1;
}

.gv-rating-star.active {
  color: #ffd563;
  text-shadow: 0 0 6px #ffd56380;
}

.gv-rating-star:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

.gv-detail-vote-panel {
  grid-template-rows: 0fr;
  transition: grid-template-rows .2s cubic-bezier(.2, .8, .2, 1);
  display: grid;
}

.gv-detail-vote-panel.open {
  grid-template-rows: 1fr;
}

.gv-detail-vote-inner {
  min-height: 0;
  overflow: hidden;
}

.gv-detail-vote-panel.open .gv-detail-vote-inner {
  padding-top: 8px;
}

.gv-detail-desc {
  white-space: pre-wrap;
  color: var(--text);
  margin: 1rem 0;
}

.gv-detail-actions {
  gap: .5rem;
  padding: 0 1.25rem 1.25rem;
  display: flex;
}

.gv-detail-actions .gv-deck-action {
  font-size: 1rem;
}

.gv-saved-list {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.gv-saved-row {
  align-items: center;
  gap: .75rem;
  margin: 0;
  padding: 7px 12px;
  display: flex;
}

.gv-saved-thumb {
  border: 1px solid var(--border);
  background: var(--bg);
  width: 76px;
  height: 76px;
  color: var(--accent);
  cursor: pointer;
  border-radius: 8px;
  flex: 0 0 76px;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 1.4rem;
  display: flex;
  overflow: hidden;
}

.gv-saved-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.gv-saved-meta {
  flex-direction: column;
  flex: 1;
  gap: .15rem;
  min-width: 0;
  display: flex;
}

.gv-saved-meta strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.gv-saved-meta-button {
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.gv-sort-toolbar {
  flex-wrap: nowrap;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  margin: .75rem 0 1rem;
  display: flex;
}

.gv-sort-toolbar > .gv-meta {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.gv-sort-toolbar > .gv-chip {
  white-space: nowrap;
  flex: none;
}

.gv-sort-toolbar-end {
  margin-left: auto;
  text-decoration: none;
}

.gv-detail-tools {
  flex-wrap: nowrap;
  gap: .5rem;
  padding: 0 0 .5rem;
  display: flex;
}

.gv-detail-tools > * {
  flex: 1 1 0;
  min-width: 0;
}

.gv-detail-tools .gv-btn {
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  padding: .55rem .5rem;
  font-size: .9rem;
  text-decoration: none;
  overflow: hidden;
}

.gv-location-card {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 10px;
  flex-direction: column;
  gap: .5rem;
  margin: 1rem 0 4px;
  display: flex;
  overflow: hidden;
}

.gv-location-preview {
  background: radial-gradient(circle at 30% 40%, #7ab7ff40, #0000 55%), radial-gradient(circle at 70% 70%, #7ddca033, #0000 55%), repeating-linear-gradient(0deg, #0000 0 22px, #ffffff0a 22px 23px), repeating-linear-gradient(90deg, #0000 0 22px, #ffffff0a 22px 23px), #0e1318;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  height: 120px;
  display: flex;
  position: relative;
}

.gv-location-pin {
  text-shadow: 0 2px 6px #0009;
  font-size: 1.8rem;
}

.gv-location-coords {
  color: #ffffffb3;
  font-variant-numeric: tabular-nums;
  font-size: .75rem;
}

.gv-location-text {
  align-items: center;
  gap: .5rem;
  padding: .6rem .75rem .75rem;
  display: flex;
}

.gv-location-text-main {
  flex-direction: column;
  flex: auto;
  gap: .15rem;
  min-width: 0;
  display: flex;
}

.gv-location-claim-btn {
  background: var(--bg);
  color: #ffffffb3;
  font: inherit;
  cursor: pointer;
  border: 1px solid #ffffff38;
  border-radius: 8px;
  flex-direction: column;
  flex: none;
  align-items: center;
  gap: 1px;
  padding: .32rem .5rem;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.1;
  display: inline-flex;
}

.gv-location-claim-btn:hover, .gv-location-claim-btn:focus-visible {
  color: #ffffffeb;
  border-color: #fff6;
  outline: none;
}

.gv-location-map-wrap {
  position: relative;
}

.gv-location-map {
  background: #0e1318;
  height: 160px;
  position: relative;
}

.gv-location-map .maplibregl-canvas {
  outline: none;
}

.gv-location-map-tap {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  position: absolute;
  inset: 0;
}

.gv-mapzoom-overlay {
  z-index: 60;
  background: #000000bf;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.gv-mapzoom-modal {
  background: #0e1318;
  border-radius: 14px;
  width: 96%;
  max-width: 900px;
  height: 92%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px #0009;
}

.gv-mapzoom-canvas {
  width: 100%;
  height: 100%;
}

.gv-mapzoom-close {
  z-index: 2;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1rem;
  font: inherit;
  background: #14181db3;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  position: absolute;
  top: .6rem;
  right: .6rem;
}

main.gv-map-fullbleed {
  width: 100%;
  max-width: var(--gv-app-frame);
  background: var(--bg);
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
}

@media (min-width: 520px) {
  main.gv-map-fullbleed {
    box-shadow: 0 0 0 1px var(--border),
      0 18px 60px #00000080;
  }
}

.gv-map-canvas {
  width: 100%;
  height: 100%;
}

.gv-map-search {
  top: calc(3.4rem + env(safe-area-inset-top, 0));
  z-index: 41;
  width: min(94vw, calc(var(--gv-app-frame) - 30px));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #14181db3;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  align-items: center;
  gap: .3rem;
  padding: .25rem .4rem;
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.gv-map-search-input {
  color: #fff;
  min-width: 0;
  height: 2rem;
  font: inherit;
  background: none;
  border: 0;
  outline: none;
  flex: 1;
  padding: 0 .5rem;
  font-size: .9rem;
}

.gv-map-search-input::placeholder {
  color: #ffffff8c;
}

.gv-map-search-input::-webkit-search-cancel-button {
  appearance: none;
  display: none;
}

.gv-map-search-input::-webkit-search-decoration {
  appearance: none;
  display: none;
}

.gv-map-search-clear {
  color: #fff;
  width: 1.6rem;
  height: 1.6rem;
  font: inherit;
  cursor: pointer;
  background: #00000073;
  border: 0;
  border-radius: 999px;
  flex: 0 0 1.6rem;
  font-size: .8rem;
}

.gv-map-search-field {
  flex: 1;
  align-items: center;
  min-width: 0;
  display: flex;
  position: relative;
}

.gv-map-search-field .gv-map-search-input {
  padding-right: 1.8rem;
}

.gv-map-search-clear-inline {
  background: var(--accent);
  color: #0b0d10;
  width: 1.4rem;
  height: 1.4rem;
  font: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: .25rem;
  transform: translateY(-50%);
}

.gv-map-search-submit {
  color: #fff;
  cursor: pointer;
  background: #00000073;
  border: 0;
  border-radius: 999px;
  flex: 0 0 1.8rem;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  display: inline-flex;
}

.gv-map-search-submit:hover, .gv-map-search-submit:focus-visible {
  background: #000000a6;
  outline: none;
}

.gv-map-count {
  bottom: calc(3.4rem + env(safe-area-inset-bottom, 0));
  z-index: 41;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #ffffffd9;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
  background: #14181d8c;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .75rem;
  position: fixed;
  left: .75rem;
}

.gv-map-pin {
  cursor: pointer;
  background: none;
  border: 0;
  width: 28px;
  height: 28px;
  padding: 0;
}

.gv-map-pin:focus-visible {
  outline: none;
}

.gv-map-pin-dot {
  background: var(--accent);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  margin: 7px auto;
  transition: transform .12s ease-out;
  display: block;
  box-shadow: 0 0 0 3px #0009, 0 2px 6px #0000008c;
}

.gv-map-pin:hover .gv-map-pin-dot, .gv-map-pin:focus-visible .gv-map-pin-dot {
  transform: scale(1.15);
}

.maplibregl-ctrl-attrib {
  color: #ffffffd9 !important;
  background: #14181db3 !important;
}

.maplibregl-ctrl-attrib a {
  color: var(--accent) !important;
}

.maplibregl-ctrl-attrib:not(.maplibregl-compact-show) .maplibregl-ctrl-attrib-inner {
  display: none;
}

.maplibregl-ctrl-attrib {
  min-height: 24px;
  padding: 0 2px !important;
}

.maplibregl-ctrl-attrib.maplibregl-compact-show {
  padding: 2px 24px 2px 8px !important;
}

main.gv-search-main {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem 1rem 4rem;
}

.gv-search-bar {
  top: calc(env(safe-area-inset-top, 0));
  background: var(--surface);
  z-index: 5;
  padding: .5rem 0;
  position: sticky;
}

.gv-search-input {
  border: 1px solid var(--border);
  background: var(--bg);
  width: 100%;
  height: 2.75rem;
  color: var(--text);
  font-size: 1rem;
  font: inherit;
  border-radius: 10px;
  padding: 0 .9rem;
}

.gv-search-input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.gv-search-status {
  margin: .25rem 0 1rem;
}

.gv-search-section-header {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ffffff8c;
  margin: 1rem 0 .5rem;
  font-size: .85rem;
}

.gv-search-hits {
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.gv-search-hit {
  border: 1px solid var(--border);
  background: var(--bg);
  width: 100%;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  border-radius: 10px;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: .75rem;
  padding: .5rem;
  transition: background .12s ease-out;
  display: grid;
}

.gv-search-hit:hover, .gv-search-hit:focus-visible {
  background: #ffffff0a;
  outline: none;
}

.gv-search-hit-thumb {
  background-color: #ffffff0d;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  width: 64px;
  height: 64px;
}

.gv-search-hit-body {
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
  display: flex;
}

.gv-search-hit-body strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.gv-search-empty {
  margin-top: 1.5rem;
}

.gv-calendar-main {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.gv-calendar-week {
  flex-direction: column;
  gap: .85rem;
  margin-top: 1rem;
  display: flex;
}

.gv-calendar-day {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .75rem .85rem;
}

.gv-calendar-day.today {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.gv-calendar-day-header {
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: .5rem;
  display: flex;
}

.gv-calendar-day-name {
  font-size: .95rem;
  font-weight: 600;
}

.gv-calendar-day.today .gv-calendar-day-name {
  color: var(--accent);
}

.gv-calendar-empty {
  padding: .5rem 0 .1rem;
  font-style: italic;
}

.gv-calendar-list {
  flex-direction: column;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.gv-calendar-row {
  border: 1px solid var(--border);
  background: var(--bg);
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  grid-template-columns: 56px 64px 1fr;
  align-items: center;
  gap: .7rem;
  padding: .5rem .6rem;
  transition: background .12s ease-out;
  display: grid;
}

.gv-calendar-row:hover, .gv-calendar-row:focus-visible {
  background: #ffffff0a;
  outline: none;
}

.gv-calendar-thumb {
  background-color: #ffffff0d;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  width: 56px;
  height: 56px;
}

.gv-calendar-time {
  font-variant-numeric: tabular-nums;
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
}

.gv-calendar-info {
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
  display: flex;
}

.gv-calendar-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  overflow: hidden;
}

.gv-cal-stickyhead {
  top: calc(3.25rem + env(safe-area-inset-top, 0));
  z-index: 30;
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
  margin-bottom: .5rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  position: sticky;
}

.gv-cal-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: .5rem;
  display: flex;
}

.gv-cal-toolbar {
  align-items: center;
  gap: 6px;
  display: flex;
}

.gv-cal-nav {
  border: 1px solid var(--border);
  background: var(--surface);
  width: 38px;
  height: 38px;
  color: var(--text);
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  display: inline-flex;
}

.gv-cal-today {
  border: 1px solid var(--border);
  background: var(--surface);
  height: 38px;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  border-radius: 10px;
  padding: 0 12px;
}

.gv-cal-row {
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  display: flex;
}

.gv-cal-title {
  letter-spacing: .01em;
  white-space: nowrap;
  flex: none;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.gv-cal-views {
  flex-shrink: 0;
  gap: 6px;
  margin-left: auto;
  display: flex;
}

.gv-cal-pick-banner {
  background: #7ab7ff1a;
  border: 1px solid #7ab7ff4d;
  border-radius: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: .85rem;
  padding: 12px 14px;
  display: flex;
}

.gv-cal-month {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.gv-cal-dow {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted, #aaa);
  text-align: center;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  padding: 0 2px;
  font-size: .75rem;
  display: grid;
}

.gv-cal-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  display: grid;
}

.gv-cal-cell {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 48px;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  text-align: left;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 4px 6px;
  display: flex;
}

.gv-cal-cell.other {
  opacity: .45;
}

.gv-cal-cell.today {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.gv-cal-cell.pickable {
  color: #cce0ff;
  background: #7ab7ff29;
  border-color: #7ab7ff73;
}

.gv-cal-cell.picked {
  background: #7affaa24;
  border-color: #7affaa66;
}

.gv-cal-cell.conflict {
  box-shadow: inset 0 0 0 1px #e64a4a;
}

.gv-cal-cell-conflict {
  color: #ff8d8d;
  letter-spacing: .02em;
  text-align: center;
  text-transform: uppercase;
  text-overflow: clip;
  background: none;
  align-self: stretch;
  min-width: 0;
  margin-top: 2px;
  padding: 0;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.1;
  display: block;
  overflow: hidden;
}

.gv-cal-legend-conflict {
  color: #ff8d8d;
  letter-spacing: .02em;
  text-transform: uppercase;
  align-items: center;
  padding: 0 4px;
  font-size: .62rem;
  font-weight: 700;
  display: inline-flex;
}

.gv-cal-cell {
  position: relative;
}

.gv-cal-conflict-pill {
  color: #ff8d8d;
  letter-spacing: .01em;
  vertical-align: middle;
  white-space: nowrap;
  background: #e64a4a2e;
  border-radius: 999px;
  align-items: center;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: .7rem;
  font-weight: 600;
  display: inline-flex;
}

.gv-cal-event-row.conflict {
  background: #e64a4a12;
  border-color: #e64a4a8c;
}

.gv-cal-cell-num {
  font-variant-numeric: tabular-nums;
  font-size: .85rem;
  font-weight: 600;
}

.gv-cal-cell-dots {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3px;
  margin-top: auto;
  padding-bottom: 2px;
  display: flex;
}

.gv-cal-dot {
  background: var(--accent);
  border-radius: 999px;
  width: 6px;
  height: 6px;
}

.gv-dot-morning {
  background: #f6c244;
}

.gv-dot-afternoon {
  background: #f08a3c;
}

.gv-dot-evening {
  background: #b06ad5;
}

.gv-dot-night {
  background: #4a7cff;
}

.gv-cal-cell-more {
  opacity: .75;
  align-self: center;
  font-size: .65rem;
}

.gv-cal-legend {
  opacity: .75;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  font-size: .75rem;
  display: flex;
}

.gv-cal-legend > span {
  align-items: center;
  gap: 5px;
  display: inline-flex;
}

.gv-cal-legend .gv-cal-dot {
  width: 8px;
  height: 8px;
}

.gv-cal-week {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  display: grid;
}

.gv-cal-day-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-direction: column;
  gap: 6px;
  min-height: 220px;
  padding: 6px 6px 8px;
  display: flex;
}

.gv-cal-day-col.today {
  border-color: var(--accent);
}

.gv-cal-day-head {
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 6px 4px;
  display: flex;
}

.gv-cal-day-head:hover {
  background: #ffffff0a;
}

.gv-cal-dow-name {
  text-transform: uppercase;
  letter-spacing: .05em;
  opacity: .7;
  font-size: .7rem;
}

.gv-cal-dow-num {
  font-variant-numeric: tabular-nums;
  font-size: 1.1rem;
  font-weight: 600;
}

.gv-cal-day-empty {
  margin: 0 0 0 4px;
  font-size: .78rem;
}

.gv-cal-day-list {
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

@media (max-width: 720px) {
  .gv-cal-week {
    grid-template-columns: 1fr;
  }

  .gv-cal-day-col {
    min-height: 0;
  }
}

.gv-cal-day-view {
  border: 1px solid var(--border);
  background: var(--surface);
  overscroll-behavior: contain;
  border-radius: 10px;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100dvh - 14rem);
  padding: 6px;
  display: flex;
  overflow-y: auto;
}

.gv-cal-hour-row {
  border-top: 1px solid #ffffff0a;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 6px;
  height: 22px;
  padding: 0;
  display: grid;
}

.gv-cal-hour-row:has(.gv-cal-event-row) {
  height: auto;
  min-height: 38px;
  padding-top: 2px;
}

.gv-cal-hour-row.conflict {
  background: #e64a4a0d;
  border-left: 3px solid #e64a4ab3;
  padding-left: 4px;
}

.gv-cal-hour-row.conflict .gv-cal-hour-label {
  color: #ff8d8d;
  opacity: .9;
}

.gv-cal-hour-row.conflict .gv-cal-hour-events {
  height: auto;
  min-height: 0;
}

.gv-cal-hour-row:first-child {
  border-top: none;
}

.gv-cal-hour-label {
  opacity: .6;
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-size: .72rem;
  line-height: 22px;
}

.gv-cal-hour-events {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.gv-cal-event-row {
  border: 1px solid var(--border);
  background: var(--bg);
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  grid-template-columns: 36px 64px 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding: 6px;
  display: grid;
}

.gv-cal-event-row:hover {
  background: #ffffff0a;
}

.gv-cal-thumb {
  background-color: #ffffff0d;
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  width: 36px;
  height: 36px;
}

.gv-cal-time {
  font-variant-numeric: tabular-nums;
  font-size: .82rem;
  font-weight: 600;
}

.gv-cal-info {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.gv-saved-title-row {
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.gv-saved-title-row > strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: auto;
  min-width: 0;
  overflow: hidden;
}

.gv-saved-date-row {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.gv-saved-date-row > .gv-meta {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.gv-match-badge {
  letter-spacing: .01em;
  white-space: nowrap;
  color: #fff;
  border-radius: 999px;
  flex-shrink: 0;
  padding: 2px 7px;
  font-size: .7rem;
  font-weight: 600;
  line-height: 1.2;
}

.gv-accuracy-row {
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  display: flex;
}

.gv-accuracy-chip {
  min-width: 0;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #ffffff0a;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  flex: 1 1 0;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 7px 4px;
  font-size: .82rem;
  font-weight: 500;
  transition: background .12s ease-out, border-color .12s ease-out;
  display: inline-flex;
  overflow: hidden;
}

.gv-accuracy-chip:hover:not(:disabled) {
  background: #ffffff12;
}

.gv-accuracy-chip.active {
  color: #cce0ff;
  background: #7ab7ff24;
  border-color: #7ab7ff;
  font-weight: 600;
}

.gv-accuracy-chip:disabled {
  cursor: default;
  opacity: .6;
}

.gv-accuracy-status {
  color: #cce0ff;
  margin-top: 8px;
  font-size: .82rem;
}

.gv-cal-title-row {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .9rem;
  font-weight: 600;
  overflow: hidden;
}

.gv-bottom-nav {
  width: 100%;
  max-width: var(--gv-app-frame);
  z-index: 41;
  height: 3.4rem;
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: var(--bg);
  border: 0;
  justify-content: space-around;
  align-items: stretch;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

body[data-fullbleed="true"] .gv-bottom-nav {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: none;
}

.gv-bottom-nav-item {
  color: var(--muted);
  letter-spacing: .02em;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  flex: 1 1 0;
  justify-content: center;
  align-items: center;
  gap: 2px;
  min-width: 0;
  padding: 4px 0;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.gv-bottom-nav-item:hover, .gv-bottom-nav-item:focus-visible {
  color: var(--text);
  outline: none;
  text-decoration: none;
}

.gv-bottom-nav-item.active {
  color: var(--accent);
}

.gv-bottom-nav-emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.gv-bottom-nav-label {
  line-height: 1;
}

body[data-bottomnav="true"]:not([data-fullbleed="true"]) {
  padding-bottom: calc(3.4rem + env(safe-area-inset-bottom, 0));
}

.gv-scan-main {
  padding-bottom: 1rem;
}

.gv-scan-stage {
  aspect-ratio: 3 / 4;
  background: #000;
  border-radius: 16px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.gv-scan-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.gv-scan-reticle {
  pointer-events: none;
  border: 2px solid #ffffffbf;
  border-radius: 16px;
  width: 220px;
  height: 220px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 9999px #00000059;
}

.gv-scan-hint {
  text-align: center;
  color: #ffffffe6;
  text-shadow: 0 1px 4px #000000b3;
  margin: 0;
  font-size: .85rem;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.gv-scan-error {
  text-align: center;
  color: #ff8d8d;
  text-shadow: 0 1px 4px #000000b3;
  margin: 0;
  font-size: .85rem;
  position: absolute;
  bottom: 3rem;
  left: 1rem;
  right: 1rem;
}

.gv-scroll-top {
  right: .75rem;
  bottom: calc(3.5rem + env(safe-area-inset-bottom, 0));
  z-index: 42;
  background: var(--accent);
  color: #0b0d10;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  font: inherit;
  border: 1px solid #0000004d;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: fixed;
  box-shadow: 0 2px 8px #0006;
}

.gv-scroll-top:hover, .gv-scroll-top:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.gv-create-tabs {
  gap: 8px;
  margin-bottom: 16px;
  display: flex;
}

.gv-create-tab {
  appearance: none;
  color: var(--fg);
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff2e;
  border-radius: 12px;
  flex: 1;
  padding: 10px 14px;
  font-weight: 600;
}

.gv-create-tab.active {
  background: var(--accent);
  color: #0b0d10;
  border-color: var(--accent);
}

.gv-create-wizard {
  gap: 12px;
  display: grid;
}

.gv-create-stepper {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
  display: grid;
}

.gv-create-stepper-item {
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #ffffff80;
  text-align: center;
  background: #ffffff0a;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: .7rem;
  font-weight: 600;
}

.gv-create-stepper-item.active {
  color: var(--accent);
  background: #7ab7ff2e;
}

.gv-create-step {
  gap: 14px;
  display: grid;
}

.gv-create-section-title {
  margin: 0;
  font-size: 1.1rem;
}

.gv-create-field {
  gap: 4px;
  display: grid;
}

.gv-create-field > span {
  font-size: .9rem;
  font-weight: 600;
}

.gv-create-field-label {
  margin-bottom: 6px;
  font-size: .9rem;
  font-weight: 600;
}

.gv-create-grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.gv-create-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  display: grid;
}

.gv-create-tag-row, .gv-create-radio-row {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.gv-create-radio {
  cursor: pointer;
  background: #ffffff0a;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: .85rem;
  display: inline-flex;
}

.gv-create-radio.active {
  background: var(--accent);
  color: #0b0d10;
  border-color: var(--accent);
}

.gv-create-radio input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.gv-create-shortcut-row {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: -2px;
  display: flex;
}

.gv-create-fb-import {
  background: #7ab7ff0f;
  border: 1px solid #7ab7ff2e;
  border-radius: 10px;
  gap: 6px;
  padding: 10px 12px;
  display: grid;
}

.gv-create-fb-row {
  grid-template-columns: 1fr auto;
  gap: 8px;
  display: grid;
}

.gv-create-fb-msg {
  margin: 0;
}

.gv-create-image-grid {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  display: grid;
}

.gv-create-image-tile {
  aspect-ratio: 1;
  background: #0006;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.gv-create-image-tile img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gv-create-image-remove {
  color: #fff;
  cursor: pointer;
  background: #000000a6;
  border: none;
  border-radius: 999px;
  width: 26px;
  height: 26px;
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 4px;
  right: 4px;
}

.gv-create-image-add {
  appearance: none;
  aspect-ratio: 1;
  color: #ffffffa6;
  cursor: pointer;
  background: #ffffff08;
  border: 1px dashed #ffffff40;
  border-radius: 10px;
  font-weight: 600;
}

.gv-create-image-add:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.gv-create-divider {
  border: none;
  border-top: 1px solid #ffffff14;
  margin: 18px 0 6px;
}

.gv-create-submit-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  display: grid;
}

.gv-create-submit-row > .gv-btn {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
  padding-left: .5rem;
  padding-right: .5rem;
  overflow: hidden;
}

.gv-create-submit {
  width: 100%;
}

.gv-create-nav {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.gv-create-venue-chip {
  background: #ffffff0a;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  display: flex;
}

.gv-create-venue-pin {
  font-size: 22px;
}

.gv-create-venue-info {
  flex: 1;
  min-width: 0;
}

.gv-create-venue-name {
  font-weight: 600;
}

.gv-create-venue-meta {
  font-size: 12px;
}

.gv-create-venue-list {
  background: #0006;
  border: 1px solid #ffffff1f;
  border-radius: 10px;
  max-height: 280px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.gv-create-venue-loading {
  padding: 10px 12px;
}

.gv-create-venue-hit {
  text-align: left;
  appearance: none;
  width: 100%;
  color: var(--fg);
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 12px;
  display: block;
}

.gv-create-venue-hit-name {
  font-weight: 600;
}

.gv-create-venue-hit-meta {
  font-size: 12px;
}

.gv-create-preview-header {
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 12px;
  display: grid;
}

.gv-create-preview-hero {
  object-fit: cover;
  border-radius: 12px;
  width: 96px;
  height: 96px;
}

.gv-create-preview-title {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.gv-create-preview-venue {
  margin: 0;
}

.gv-create-preview-list {
  grid-template-columns: max-content 1fr;
  gap: 6px 12px;
  margin: 0;
  display: grid;
}

.gv-create-preview-dt {
  color: #fff9;
  font-size: .85rem;
}

.gv-create-preview-dd {
  white-space: pre-wrap;
  margin: 0;
  font-size: .9rem;
}

@media (max-width: 520px) {
  .gv-create-grid-2, .gv-create-grid-3 {
    grid-template-columns: 1fr;
  }

  .gv-create-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gv-flag-backdrop {
  z-index: 150;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
  background: #000000a6;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.gv-flag-dialog {
  background: var(--bg, #15171a);
  width: 100%;
  max-width: 460px;
  max-height: calc(100dvh - 32px - env(safe-area-inset-bottom, 0));
  border: 1px solid #ffffff2e;
  border-radius: 14px;
  gap: 10px;
  padding: 16px;
  display: grid;
  overflow: hidden;
  box-shadow: 0 12px 40px #0009;
}

.gv-flag-dialog.gv-flag-dialog-scroll {
  flex-direction: column;
  padding: 0;
  display: flex;
}

.gv-flag-dialog-sticky-head {
  z-index: 1;
  background: var(--bg, #15171a);
  border-bottom: 1px solid #ffffff0f;
  gap: 10px;
  padding: 16px 16px 10px;
  display: grid;
  position: sticky;
  top: 0;
}

.gv-flag-dialog-scroll-body {
  overscroll-behavior: contain;
  flex: auto;
  min-height: 0;
  padding: 12px 16px 16px;
  overflow-y: auto;
}

.gv-flag-dialog-header {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  display: flex;
}

.gv-flag-dialog-close {
  appearance: none;
  color: var(--fg);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 999px;
  padding: 0 6px;
  font-size: 1.6rem;
  line-height: 1;
}

.gv-flag-dialog-close:hover, .gv-flag-dialog-close:focus-visible {
  background: #ffffff0f;
  outline: none;
}

.gv-dialog-actions {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  display: flex;
}

.gv-dialog-actions .gv-btn {
  flex: none;
  padding: .45rem .95rem;
  font-size: .92rem;
}

.gv-dialog-actions .gv-btn-end {
  margin-left: auto;
}

.gv-dialog-actions .gv-btn {
  min-width: 88px;
}

.gv-address-tap {
  cursor: pointer;
}

.gv-address-tap:hover, .gv-address-tap:focus-visible {
  outline: none;
  text-decoration: underline;
}

.gv-address-copied {
  color: #80d18a;
  font-weight: 600;
}

.gv-create-form {
  gap: 14px;
  display: grid;
}

.gv-create-required {
  color: #ff8d8d;
  font-weight: 700;
}

.gv-create-venue-section {
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 12px 0;
  font-size: .7rem;
}

.gv-create-weekday-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  display: grid;
}

.gv-create-weekday {
  appearance: none;
  color: var(--fg);
  cursor: pointer;
  background: #ffffff0a;
  border: 1px solid #ffffff2e;
  border-radius: 10px;
  padding: 12px 0;
  font-weight: 600;
}

.gv-create-weekday.active {
  background: var(--accent);
  color: #0b0d10;
  border-color: var(--accent);
}

.gv-create-month-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  display: grid;
}

.gv-create-monthday {
  appearance: none;
  color: var(--fg);
  cursor: pointer;
  background: #ffffff0a;
  border: 1px solid #ffffff26;
  border-radius: 8px;
  padding: 8px 0;
  font-size: .85rem;
}

.gv-create-monthday.active {
  background: var(--accent);
  color: #0b0d10;
  border-color: var(--accent);
}

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