:root {
  color-scheme: dark;
  --bg: #03080b;
  --bg-soft: #071114;
  --panel: rgba(9, 21, 25, 0.86);
  --panel-strong: rgba(11, 28, 32, 0.96);
  --line: rgba(151, 210, 205, 0.18);
  --line-strong: rgba(151, 210, 205, 0.34);
  --text: #edf7f6;
  --muted: #91a5a8;
  --teal: #52d4c6;
  --amber: #f5b84b;
  --coral: #ff5f8f;
  --green: #83d9a9;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.night-safe {
  --bg: #080202;
  --bg-soft: #140505;
  --panel: rgba(23, 5, 5, 0.88);
  --panel-strong: rgba(28, 6, 6, 0.96);
  --line: rgba(255, 72, 72, 0.2);
  --line-strong: rgba(255, 92, 92, 0.36);
  --text: #ffecec;
  --muted: #c18d8d;
  --teal: #ff4d4d;
  --amber: #ff8a52;
  --coral: #ff2f2f;
  --green: #ff6b5e;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 73% 17%, rgba(82, 212, 198, 0.11), transparent 26rem),
    radial-gradient(circle at 16% 72%, rgba(255, 95, 143, 0.08), transparent 24rem),
    linear-gradient(145deg, #020607 0%, #071214 52%, #020507 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.night-safe {
  background:
    radial-gradient(circle at 73% 17%, rgba(255, 72, 72, 0.12), transparent 26rem),
    radial-gradient(circle at 16% 72%, rgba(255, 138, 82, 0.07), transparent 24rem),
    linear-gradient(145deg, #050101 0%, #140404 52%, #030101 100%);
}

button,
input,
select {
  font: inherit;
}

a {
  color: var(--teal);
}

.starscape {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(82, 212, 198, 0.32) 1px, transparent 1px);
  background-position:
    0 0,
    18px 22px;
  background-size:
    92px 92px,
    137px 137px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
  opacity: 0.28;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 11, 0.78);
  backdrop-filter: blur(18px);
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
  width: min(100%, 760px);
}

.top-nav {
  margin-right: auto;
}

.header-location {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin-left: auto;
}

.header-location select {
  min-height: 40px;
  min-width: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--text);
  padding: 0 12px;
}

.header-location select option,
.controls select option {
  background: #071114;
  color: #edf7f6;
}

body.night-safe .header-location select option,
body.night-safe .controls select option {
  background: #170505;
  color: #ffecec;
}

.icon-button {
  display: grid;
  min-width: 42px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(82, 212, 198, 0.45);
  border-radius: 8px;
  background: rgba(82, 212, 198, 0.1);
  color: var(--teal);
  cursor: pointer;
  font-weight: 750;
  padding: 0 10px;
  white-space: nowrap;
}

.theme-button {
  min-width: 42px;
}

.theme-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.brand {
  display: flex;
  max-width: 100%;
  min-width: 0;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 650;
  line-height: 1.05;
}

.brand > span:last-child {
  min-width: 0;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(82, 212, 198, 0.06);
}

.brand-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.brand-icon {
  display: block;
}

.brand-icon-newtonian {
  display: none;
}

html.use-newtonian-icon .brand-icon-newtonian {
  display: block;
}

html.use-newtonian-icon .brand-icon-dobsonian {
  display: none;
}

.brand-scope-body {
  stroke-width: 1.95;
}

.brand-scope-detail {
  opacity: 0.9;
  stroke: var(--teal);
  stroke-width: 1.35;
}

.brand-star {
  stroke: var(--amber);
}

.top-nav {
  display: flex;
  gap: 8px;
  min-width: 0;
}

.top-nav a,
.ghost-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
}

.top-nav a {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 0 14px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.top-nav a[aria-current="page"],
.ghost-button[aria-pressed="true"] {
  border-color: rgba(82, 212, 198, 0.55);
  background: rgba(82, 212, 198, 0.12);
  color: var(--teal);
}

.observatory {
  justify-self: end;
  color: var(--muted);
  font-size: 0.83rem;
  text-align: right;
}

.observatory strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
}

.planner-shell {
  position: relative;
  z-index: 1;
  width: min(1680px, 100%);
  margin: 0 auto;
  padding: 28px clamp(14px, 3vw, 36px) 36px;
}

.controls {
  display: grid;
  grid-template-columns: 150px 190px 240px minmax(240px, 1fr) 170px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.search-control {
  grid-column: span 1;
}

.controls label {
  display: grid;
  gap: 8px;
}

.controls span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.controls input,
.controls select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(7, 17, 20, 0.76);
  color: var(--text);
  outline: none;
  padding: 0 13px;
}

.controls input:focus,
.controls select:focus,
.ghost-button:focus-visible,
.top-nav a:focus-visible,
tr:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.ghost-button {
  min-width: 112px;
  padding: 0 16px;
  white-space: nowrap;
}

#langButton,
#resetButton {
  justify-self: start;
}

.segmented {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 12px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.segmented button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0 16px;
}

.segmented button[aria-pressed="true"] {
  background: rgba(82, 212, 198, 0.16);
  color: var(--teal);
}

.planner-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) minmax(460px, 0.78fr);
  gap: 18px;
  align-items: start;
}

.object-panel,
.detail-panel,
.ack-hero,
.ack-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section-title {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 16px;
}

.section-title h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 650;
}

.section-title p {
  margin: 6px 0 0;
  color: var(--muted);
}

.table-wrap {
  max-height: calc(100vh - 260px);
  min-height: 520px;
  overflow: auto;
  border-top: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(151, 210, 205, 0.11);
  text-align: left;
  vertical-align: middle;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #071114;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  color: #dce8e8;
  font-size: 0.95rem;
}

td strong {
  display: grid;
  gap: 3px;
  color: var(--text);
  font-weight: 640;
}

td span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.object-name-cell {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.object-thumb {
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 45% 42%, rgba(82, 212, 198, 0.2), transparent 38%),
    rgba(7, 17, 20, 0.9);
  background-position: center;
  background-size: cover;
}

.object-thumb.has-image {
  box-shadow: inset 0 0 0 1px rgba(237, 247, 246, 0.08);
}

tbody tr {
  cursor: pointer;
}

tbody tr:hover,
tbody tr.is-selected {
  background: linear-gradient(90deg, rgba(82, 212, 198, 0.2), rgba(82, 212, 198, 0.03));
}

tbody tr.is-selected {
  box-shadow: inset 4px 0 0 var(--teal);
}

.detail-panel {
  position: sticky;
  top: 118px;
  min-height: 640px;
  padding: 22px;
  background: var(--panel-strong);
}

.detail-empty {
  display: grid;
  min-height: 520px;
  place-items: center;
  align-content: center;
  color: var(--muted);
  text-align: center;
}

.constellation-glyph {
  color: var(--amber);
  font-size: 3rem;
}

.detail-header {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 20px;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 8, 11, 0.38), rgba(3, 8, 11, 0.68) 48%, rgba(3, 8, 11, 0.94)),
    linear-gradient(0deg, rgba(3, 8, 11, 0.38), rgba(3, 8, 11, 0.05) 48%, rgba(3, 8, 11, 0.48)),
    radial-gradient(circle at 24% 35%, rgba(82, 212, 198, 0.18), transparent 46%),
    #071114;
  background-position: center;
  background-size: cover, cover, cover;
  padding: 22px;
}

.detail-header > div {
  align-self: end;
  max-width: 720px;
}

.overline {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.detail-header h2,
.ack-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 680;
  line-height: 1;
}

.detail-header p:not(.overline) {
  margin: 9px 0 0;
  color: #d4e0df;
}

.close-detail {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.mobile-close {
  display: none;
}

.mobile-close-row {
  display: none;
}

.metric-grid,
.event-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.event-strip {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
}

.detail-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  min-width: 0;
  padding: 14px;
  background: rgba(3, 8, 11, 0.76);
}

.metric span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1rem;
  font-weight: 620;
}

.path-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 8, 11, 0.42);
  padding: 16px;
}

.path-title {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.path-title strong {
  color: var(--amber);
}

.path-svg {
  width: 100%;
  height: auto;
  display: block;
}

.path-svg .path-bg {
  fill: #071114;
}

.path-svg .grid line {
  stroke: rgba(151, 210, 205, 0.16);
}

.path-svg .grid text,
.alt-label,
.az-label,
.time-label,
.shade-legend text {
  fill: var(--muted);
  font-size: 13px;
}

.main-path,
.below-path,
.path-band {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.below-path {
  stroke: rgba(145, 165, 168, 0.35);
  stroke-dasharray: 6 8;
  stroke-width: 3;
}

.main-path {
  stroke: url(#pathGradient);
  stroke-width: 5;
}

.path-band {
  stroke-width: 5;
}

.path-band.day {
  stroke: #7dcdff;
}

.path-band.twilight {
  stroke: #f5a642;
}

.path-band.astro {
  stroke: #8ee6a8;
}

.path-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.path-legend span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.legend-line {
  display: inline-block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
}

.legend-line.day {
  background: #7dcdff;
}

.legend-line.twilight {
  background: #f5a642;
}

.legend-line.astro {
  background: #8ee6a8;
}

.peak-dot {
  fill: var(--amber);
  stroke: #071114;
  stroke-width: 3;
}

.current-dot {
  fill: #7dcdff;
  stroke: #071114;
  stroke-width: 3;
}

.peak-label,
.current-label {
  fill: var(--amber);
  font-size: 15px;
  font-weight: 800;
}

.current-label {
  fill: #bde9ff;
}

.wiki-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 8, 11, 0.5);
}

.wiki-card.has-note-image {
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: start;
}

.wiki-note-button {
  display: block;
  width: 132px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
}

.wiki-note-button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.wiki-note-image {
  display: block;
  width: 132px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 20, 0.82);
}

.wiki-card-top {
  margin: 0 0 16px;
}

.wiki-banner {
  min-height: 164px;
  margin: 0 0 16px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 8, 11, 0.55), rgba(3, 8, 11, 0.92)),
    radial-gradient(circle at 25% 35%, rgba(82, 212, 198, 0.2), transparent 42%),
    #071114;
  background-position: center;
  background-size: cover;
}

.wiki-banner-copy {
  max-width: 680px;
  padding: 18px;
}

.wiki-banner-copy h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.wiki-banner-copy p:not(.overline) {
  margin: 0 0 8px;
  color: #d6e2e2;
  line-height: 1.55;
}

.wiki-copy {
  min-width: 0;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(10px);
}

.image-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 82dvh;
  object-fit: contain;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #020607;
  box-shadow: var(--shadow);
}

.image-lightbox p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(7, 17, 20, 0.92);
  color: var(--text);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.wiki-copy h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.wiki-copy p:not(.overline) {
  margin: 0 0 10px;
  color: #c5d4d5;
  line-height: 1.55;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.resource-links a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(82, 212, 198, 0.07);
  color: var(--teal);
  padding: 0 10px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.three-wrap {
  display: grid;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 45%, rgba(82, 212, 198, 0.14), transparent 48%),
    #071114;
  color: var(--muted);
  touch-action: none;
}

.three-wrap canvas {
  display: block;
  width: 100%;
  height: auto;
}

.ack-shell {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(1680px, 100%);
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 36px) 30px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.ack-hero {
  padding: clamp(28px, 6vw, 64px);
}

.ack-hero p:not(.overline) {
  max-width: 760px;
  color: #c5d4d5;
  font-size: 1.12rem;
  line-height: 1.75;
}

.ack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.ack-grid article {
  padding: 28px;
}

.ack-grid h2 {
  margin: 0 0 12px;
}

.ack-grid p {
  color: #c5d4d5;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .site-header,
  .controls,
  .planner-grid,
  .ack-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-actions {
    justify-content: flex-end;
    flex-wrap: wrap;
    justify-self: stretch;
    width: 100%;
  }

  .top-nav {
    margin-right: auto;
  }

  .observatory {
    justify-self: start;
  }

  .detail-panel {
    position: static;
  }

  .table-wrap {
    max-height: none;
  }
}

@media (max-width: 1180px) {
  .detail-panel {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: none;
    width: 100vw;
    height: 100dvh;
    min-height: 0;
    overflow: auto;
    padding: 18px;
    border: 0;
    border-radius: 0;
    background: #040c0f;
  }

  body.detail-open {
    overflow: hidden;
  }

  body.detail-open .site-header {
    display: none;
  }

  body.detail-open .planner-shell {
    padding: 0;
  }

  body.detail-open .detail-panel {
    display: block;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 16px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand small {
    max-width: 260px;
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark svg {
    width: 34px;
    height: 34px;
  }

  .top-nav {
    display: flex;
  }

  .top-nav a {
    padding: 0 8px;
    overflow: hidden;
    font-size: 0.82rem;
    text-overflow: ellipsis;
  }

  .controls {
    gap: 10px;
  }

  .section-title,
  .path-title {
    align-items: stretch;
    flex-direction: column;
  }

  .object-panel,
  .detail-panel {
    border-radius: 0;
    margin-inline: -14px;
  }

  .detail-panel {
    margin-inline: 0;
  }

  th:nth-child(2),
  td:nth-child(2),
  th:nth-child(3),
  td:nth-child(3),
  th:nth-child(6),
  td:nth-child(6) {
    display: none;
  }

  th,
  td {
    padding: 13px 12px;
  }

  .metric-grid,
  .event-strip {
    grid-template-columns: 1fr 1fr;
  }

  .wiki-card.has-note-image {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .wiki-note-button,
  .wiki-note-image {
    width: 104px;
  }

  .wiki-banner {
    min-height: 190px;
  }

  .ack-shell {
    width: calc(100% - 24px);
    padding: 24px 0;
  }
}

@media (max-width: 420px) {
  th:nth-child(5),
  td:nth-child(5) {
    display: none;
  }
}

@media (max-width: 1180px) {
  body.detail-open .detail-header {
    flex-direction: row;
    align-items: flex-start;
  }

  body.detail-open .close-detail {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 21;
    border-color: var(--coral);
    background: rgba(255, 95, 143, 0.18);
    color: #ffffff;
  }

  body.detail-open .mobile-close {
    display: none;
  }

  body.detail-open .mobile-close-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  body.detail-open .mobile-close-row .close-detail {
    position: static;
    width: auto;
    height: 40px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1;
  }

  body.detail-open .detail-header .close-detail {
    display: none;
  }
}
