:root {
  color-scheme: dark;
  --bg: #0d1116;
  --bg-2: #111820;
  --panel: rgba(20, 27, 35, 0.9);
  --panel-strong: #161d26;
  --line: rgba(222, 231, 242, 0.16);
  --line-strong: rgba(222, 231, 242, 0.28);
  --text: #f3f7fb;
  --muted: #9daab8;
  --soft: #c8d1dc;
  --accent: #24d5ce;
  --accent-2: #0e8f8e;
  --danger: #ff6b6b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --time-font: "SF Pro Display", "Inter", "Segoe UI", system-ui, sans-serif;
  --ui-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--ui-font);
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 56px 56px,
    radial-gradient(circle at 76% 18%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28rem),
    linear-gradient(145deg, var(--bg), var(--bg-2));
}

body.light {
  color-scheme: light;
  --bg: #f6f8fb;
  --bg-2: #ecf1f5;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --line: rgba(28, 39, 52, 0.13);
  --line-strong: rgba(28, 39, 52, 0.22);
  --text: #111820;
  --muted: #607080;
  --soft: #314050;
  --shadow: 0 24px 70px rgba(20, 38, 60, 0.12);
}

body.accent-amber { --accent: #f4b84a; --accent-2: #bf7c12; }
body.accent-violet { --accent: #a98bff; --accent-2: #7053cc; }
body.accent-green { --accent: #61d394; --accent-2: #168653; }

body:not(.digital) .hero-time,
body:not(.digital) .readout {
  font-family: var(--time-font);
  font-variant-numeric: tabular-nums;
}

body.digital .hero-time,
body.digital .readout {
  font-family: "SF Mono", "Roboto Mono", "Cascadia Mono", monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--bg);
  background: var(--accent);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.app-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 100vh;
}

.side-rail {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 24px 14px;
  border-right: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-strong) 86%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 10px 34px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 760;
}

.brand span span {
  color: var(--accent);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #071113;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 42%, transparent);
}

.tool-nav {
  display: grid;
  gap: 8px;
}

.nav-item,
.chip-button,
.icon-button,
.primary,
.secondary,
.danger,
.quick-row button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--soft);
  text-align: left;
}

.nav-item:hover,
.nav-item.is-active {
  color: var(--text);
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}

.rail-footer {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding: 14px 10px 0;
}

.workspace {
  min-width: 0;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px 26px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px);
}

.micro {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.1;
}

h2 {
  margin-bottom: 6px;
  font-size: 1rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.top-actions,
.button-row,
.quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.chip-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
}

.chip-button.is-muted {
  color: var(--muted);
}

.chip-button.is-muted .ico {
  opacity: 0.72;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  grid-template-areas:
    "stage context"
    "tool context";
  gap: 0;
}

.main-grid.right-collapsed {
  grid-template-columns: minmax(0, 1fr) 360px;
  grid-template-areas:
    "stage context"
    "tool context";
}

.main-grid.right-collapsed .context-panel {
  visibility: hidden;
  pointer-events: none;
}

.time-stage {
  position: relative;
  display: grid;
  min-height: 410px;
  place-items: center;
  overflow: hidden;
  padding: 46px 24px;
  border-bottom: 1px solid var(--line);
  grid-area: stage;
  isolation: isolate;
}

.orbit {
  position: absolute;
  inset: 8%;
  z-index: -1;
  opacity: 0.56;
}

.orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit span:nth-child(2) {
  inset: 14%;
  border-style: dashed;
}

.orbit span:nth-child(3) {
  inset: 28%;
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
}

.stage-label,
.hero-zone,
.hero-date {
  margin: 0;
}

.stage-label {
  color: var(--soft);
}

.hero-time {
  display: block;
  max-width: 100%;
  margin: 20px 0 18px;
  font-size: clamp(3.8rem, 10vw, 9.4rem);
  font-weight: 780;
  line-height: 0.9;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.12);
}

.hero-date {
  color: var(--accent);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 680;
  text-align: center;
}

.hero-zone {
  margin-top: 8px;
  color: var(--muted);
}

.status-line {
  position: absolute;
  bottom: 18px;
  left: 24px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.pulse {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--accent);
}

.tool-panel {
  min-width: 0;
  grid-area: tool;
}

.tool-view {
  display: none;
  min-height: 430px;
  padding: 24px 28px 30px;
}

.tool-view.is-active {
  display: block;
}

.panel-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.state-pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  font-size: 0.8rem;
  font-weight: 720;
}

.control-grid,
.split-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.split-fields {
  grid-template-columns: minmax(180px, 1.4fr) minmax(150px, 0.8fr) minmax(140px, 0.8fr);
  align-items: end;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 680;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
}

.field textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.toggle {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 680;
}

.toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.quick-row {
  margin: 6px 0 2px;
}

.quick-row button {
  min-height: 34px;
  padding: 0 11px;
  color: var(--soft);
}

.quick-row button:hover {
  color: var(--text);
  border-color: var(--accent);
}

.primary,
.secondary,
.danger {
  min-height: 42px;
  padding: 0 16px;
  font-weight: 740;
}

.primary {
  color: #061314;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent-2) 88%, #000));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 20%, transparent);
}

.secondary:hover {
  border-color: var(--accent);
}

.danger {
  color: #fff;
  border-color: color-mix(in srgb, var(--danger) 68%, transparent);
  background: color-mix(in srgb, var(--danger) 22%, transparent);
}

.notice {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.readout {
  margin: 10px 0 20px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 780;
  line-height: 1;
}

.stopwatch-readout {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.lap-list,
.city-table,
.holiday-grid,
.holiday-focus {
  margin-top: 18px;
}

.lap-row,
.city-row,
.holiday-card,
.holiday-focus {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 78%, transparent);
}

.lap-row,
.city-row {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 9px 12px;
  color: var(--soft);
}

.lap-row + .lap-row,
.city-row + .city-row {
  margin-top: 8px;
}

.empty {
  color: var(--muted);
}

.city-row {
  grid-template-columns: minmax(150px, 1fr) auto auto;
}

.city-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.city-time {
  font-size: 1.45rem;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.city-actions {
  display: flex;
  gap: 5px;
}

.city-actions button {
  width: 31px;
  height: 31px;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.context-panel {
  min-height: calc(100vh - 72px);
  padding: 24px 20px;
  border-left: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-strong) 82%, transparent);
  grid-area: context;
}

.panel-head.compact {
  align-items: center;
}

.mini-world {
  display: grid;
  gap: 12px;
}

.mini-city {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mini-city strong {
  display: block;
}

.mini-city span {
  color: var(--muted);
  font-size: 0.8rem;
}

.mini-city time {
  font-size: 1.35rem;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.share-box,
.settings-box {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.settings-box {
  display: grid;
  gap: 8px;
}

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

.holiday-card {
  display: grid;
  gap: 9px;
  padding: 14px;
  text-align: left;
}

.holiday-card button {
  justify-self: start;
}

.holiday-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.holiday-top strong {
  min-width: 0;
  line-height: 1.2;
}

.country {
  min-width: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 780;
  text-align: right;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.countdown {
  font-size: 1.3rem;
  font-weight: 780;
}

.holiday-focus {
  padding: 16px;
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
}

.inline-action {
  align-self: end;
}

.ico {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: currentColor;
  flex: 0 0 auto;
  mask: var(--icon) center / contain no-repeat;
}

[data-icon="alarm"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='13' r='7'/%3E%3Cpath d='M12 10v4l3 2M5 4 3 6M19 4l2 2M7 21l1.2-2M17 21l-1.2-2'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="timer"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2h12M7 2c0 4 4 5 5 7 1-2 5-3 5-7M7 22c0-4 4-5 5-7 1 2 5 3 5 7M6 22h12'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="stopwatch"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='14' r='7'/%3E%3Cpath d='M12 14l3-3M9 2h6M12 2v3M18.5 7.5 20 6'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="globe"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="calendar"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="sun"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="gear"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z'/%3E%3Cpath d='M19.4 15a1.7 1.7 0 0 0 .34 1.88l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06A1.7 1.7 0 0 0 15 19.4a1.7 1.7 0 0 0-1 1.55V21a2 2 0 1 1-4 0v-.09A1.7 1.7 0 0 0 9 19.36a1.7 1.7 0 0 0-1.88.34l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.7 1.7 0 0 0 4.6 15a1.7 1.7 0 0 0-1.55-1H3a2 2 0 1 1 0-4h.09A1.7 1.7 0 0 0 4.64 9a1.7 1.7 0 0 0-.34-1.88l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06A1.7 1.7 0 0 0 9 4.6a1.7 1.7 0 0 0 1-1.55V3a2 2 0 1 1 4 0v.09A1.7 1.7 0 0 0 15 4.64a1.7 1.7 0 0 0 1.88-.34l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06A1.7 1.7 0 0 0 19.4 9c.3.58.9 1 1.55 1H21a2 2 0 1 1 0 4h-.09A1.7 1.7 0 0 0 19.4 15Z'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="share"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12v7a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-7M16 6l-4-4-4 4M12 2v13'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="plus"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12h14' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
[data-icon="info"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 11v5M12 8h.01'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="download"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12M7 10l5 5 5-5M5 21h14'/%3E%3C/g%3E%3C/svg%3E"); }
[data-icon="panel-right"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M15 4v16M18 8h.01M18 12h.01M18 16h.01' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E"); }

dialog {
  max-width: 420px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.48);
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .brand span:not(.brand-mark),
  .nav-item span:last-child {
    display: none;
  }

  .nav-item {
    justify-content: center;
  }

  .main-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stage"
      "tool"
      "context";
  }

  .context-panel {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .app-shell {
    display: block;
  }

  .side-rail {
    position: sticky;
    z-index: 5;
    top: 0;
    width: 100vw;
    max-width: 100vw;
    min-height: 0;
    padding: 8px;
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .brand,
  .rail-footer {
    display: none;
  }

  .tool-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    width: min(calc(100vw - 16px), 374px);
    min-width: 0;
  }

  .nav-item {
    min-width: 0;
    width: auto;
    min-height: 54px;
    padding: 0;
  }

  .nav-item .ico {
    width: 22px;
    height: 22px;
  }

  .top-bar {
    display: grid;
    gap: 14px;
    padding: 16px;
  }

  .top-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .chip-button {
    justify-content: center;
    padding: 0 8px;
  }

  .time-stage {
    min-height: 330px;
    padding: 34px 14px;
  }

  .hero-time {
    font-size: clamp(2rem, 9.2vw, 3rem);
  }

  .country {
    max-width: 100%;
    font-size: 0.68rem;
    text-align: left;
  }

  .holiday-top {
    display: grid;
    grid-template-columns: 1fr;
  }

  .status-line {
    position: static;
    margin-top: 20px;
  }

  .tool-view,
  .context-panel {
    padding: 20px 16px;
  }

  .panel-head,
  .split-fields,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .panel-head {
    display: grid;
  }

  .holiday-grid {
    grid-template-columns: 1fr;
  }

  .city-row {
    grid-template-columns: 1fr;
  }

  .city-actions {
    justify-content: flex-start;
  }

  .period-field {
    display: none;
  }
}
