/* Client logbook (body.customers.logbook-page) — MOVA Rock community log */
body.customers.logbook-page .mova-logbook {
  max-width: 56rem;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

body.customers.logbook-page .mova-logbook.booking-main .booking-hero {
  min-height: 18rem;
  height: min(45vh, 22rem);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow: 0 20px 48px rgb(32 25 20 / 0.14);
}

/*
 * Hero image: booking.css puts a photo on .booking-hero-media itself. Logbook overrides
 * with a ::before layer so inline PHP can set background-image on ::before (same pattern
 * as booking hero, without fighting the default JPG on the parent).
 */
/* body.customers.logbook-page .mova-logbook.booking-main .booking-hero-media { */
  /* background-image: none; */
  /* background-color: #241a14; */
/* } */

body.customers.logbook-page .mova-logbook.booking-main .booking-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  /* background-image: linear-gradient(
    135deg,
    rgb(45 28 20 / 0.95) 0%,
    rgb(74 45 31 / 0.88) 48%,
    rgb(92 56 36 / 0.82) 100%
  ); */
}

body.customers.logbook-page .mova-logbook.booking-main .booking-hero-overlay {
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 0.72) 0%,
    rgb(0 0 0 / 0.35) 38%,
    rgb(0 0 0 / 0.12) 62%,
    transparent 100%
  );
}

body.customers.logbook-page .mova-logbook.booking-main .booking-hero-inner {
  max-width: none;
  margin: 0;
  padding: 0 1.5rem 3rem;
}

body.customers.logbook-page .mova-logbook.booking-main .booking-hero-kicker {
  margin: 0 0 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

body.customers.logbook-page .mova-logbook.booking-main .booking-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  max-width: 20ch;
  text-shadow: 0 2px 28px rgb(0 0 0 / 0.45);
}
body.customers .booking-main .booking-hero-media {
    position: absolute;
    inset: 0;
    background-image: url(../../assets/images/clientbanner.jpg);
    background-size: cover;
    background-position: center;
} 

@media (max-width: 640px) {
  body.customers.logbook-page .mova-logbook.booking-main .booking-hero {
    min-height: 15rem;
    height: 36vh;
    border-radius: 0.85rem;
  }

  body.customers.logbook-page .mova-logbook.booking-main .booking-hero-inner {
    padding: 0 1.1rem 2.1rem;
  }

  body.customers.logbook-page .mova-logbook.booking-main .booking-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.7rem);
  }
}

body.customers.logbook-page .logbook-intro {
  margin-bottom: 2rem;
}

body.customers.logbook-page .logbook-intro-rule {
  width: 3rem;
  height: 3px;
  background: #9d521a;
  margin-bottom: 1rem;
  border-radius: 2px;
}

body.customers.logbook-page .logbook-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #201914;
  line-height: 1.25;
}

body.customers.logbook-page .logbook-intro h2 em {
  font-style: italic;
  font-weight: 500;
  color: #6b3d1f;
}

body.customers.logbook-page .logbook-intro p {
  margin: 0;
  color: #5c534c;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 40rem;
}

body.customers.logbook-page .logbook-stats {
  margin-bottom: 2rem;
}

body.customers.logbook-page .logbook-stats-inner {
  border: 1px solid rgb(32 25 20 / 0.1);
  border-radius: 1rem;
  background: #faf8f6;
  padding: 1.25rem 1.5rem;
}

body.customers.logbook-page .logbook-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: center;
}

@media (max-width: 520px) {
  body.customers.logbook-page .logbook-stats-grid {
    grid-template-columns: 1fr;
  }
}

body.customers.logbook-page .logbook-stat--divider {
  border-right: 1px solid rgb(32 25 20 / 0.08);
}

@media (max-width: 520px) {
  body.customers.logbook-page .logbook-stat--divider {
    border-right: none;
    border-bottom: 1px solid rgb(32 25 20 / 0.08);
    padding-bottom: 1rem;
  }
}

body.customers.logbook-page .logbook-stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
  color: #9d521a;
}

body.customers.logbook-page .logbook-stat-value {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #201914;
}

body.customers.logbook-page .logbook-stat-value--symbol {
  font-size: 2rem;
  line-height: 1;
}

body.customers.logbook-page .logbook-stat-label {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #6f6258;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.customers.logbook-page .logbook-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgb(32 25 20 / 0.15);
  background: #fff;
  color: #201914;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

body.customers.logbook-page .logbook-btn:hover {
  background: rgb(157 82 26 / 0.08);
  border-color: rgb(157 82 26 / 0.35);
}

body.customers.logbook-page .logbook-btn--wide {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

body.customers.logbook-page .logbook-cta-band {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #3d2418 0%, #5a341f 100%);
  color: #fff;
  text-align: center;
}

body.customers.logbook-page .logbook-cta-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

body.customers.logbook-page .logbook-cta-inner h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 600;
}

body.customers.logbook-page .logbook-cta-lead {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  opacity: 0.92;
  font-size: 0.9375rem;
  line-height: 1.55;
}

body.customers.logbook-page .logbook-cta-inner .logbook-btn {
  background: #fff;
  color: #3d2418;
  border-color: transparent;
  text-decoration: none;
}

/* Inline logbook form */
body.customers.logbook-page .logbook-form-card {
  margin-bottom: 2.75rem;
  padding: 1.75rem 1.5rem 2rem;
  border: 1px solid rgb(32 25 20 / 0.1);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(252 250 247) 100%);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.9) inset,
    0 18px 40px rgb(32 25 20 / 0.07);
}

body.customers.logbook-page .logbook-form-card::before {
  content: "";
  display: block;
  height: 3px;
  margin: -1.75rem -1.5rem 1.35rem;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, rgb(157 82 26 / 0.25), #9d521a, rgb(157 82 26 / 0.25));
}

body.customers.logbook-page .logbook-form-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #9d521a;
  font-weight: 600;
}

body.customers.logbook-page .logbook-form-title {
  margin: 0 0 1.5rem;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
  color: #201914;
  line-height: 1.2;
}

body.customers.logbook-page .logbook-form {
  margin: 0;
}

body.customers.logbook-page .logbook-form-block {
  margin-bottom: 0;
  padding: 1.35rem 0;
  border-top: 1px solid rgb(32 25 20 / 0.08);
}

body.customers.logbook-page .logbook-form-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

body.customers.logbook-page .logbook-form-block:last-of-type {
  padding-bottom: 0;
}

body.customers.logbook-page .logbook-form-section-label {
  margin: 0 0 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgb(157 82 26 / 0.2);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6f6258;
}

body.customers.logbook-page .logbook-form-section-label--tight {
  margin-bottom: 0.65rem;
}

body.customers.logbook-page .logbook-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

@media (max-width: 560px) {
  body.customers.logbook-page .logbook-form-grid {
    grid-template-columns: 1fr;
  }
}

body.customers.logbook-page .logbook-form-field--full {
  grid-column: 1 / -1;
}

body.customers.logbook-page .logbook-form-field--row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0;
}

body.customers.logbook-page .logbook-form-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c534c;
}

body.customers.logbook-page .logbook-form-input,
body.customers.logbook-page .logbook-form-select,
body.customers.logbook-page .logbook-form-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgb(32 25 20 / 0.14);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  color: #201914;
  background: rgb(255 255 255 / 0.95);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.customers.logbook-page .logbook-form-input::placeholder,
body.customers.logbook-page .logbook-form-textarea::placeholder {
  color: rgb(111 98 88 / 0.65);
  font-weight: 300;
}

body.customers.logbook-page .logbook-form-input:hover,
body.customers.logbook-page .logbook-form-select:hover,
body.customers.logbook-page .logbook-form-textarea:hover {
  border-color: rgb(157 82 26 / 0.35);
}

body.customers.logbook-page .logbook-form-input:focus,
body.customers.logbook-page .logbook-form-select:focus,
body.customers.logbook-page .logbook-form-textarea:focus {
  outline: none;
  border-color: #9d521a;
  box-shadow: 0 0 0 3px rgb(157 82 26 / 0.18);
  background: #fff;
}

body.customers.logbook-page .logbook-form-textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.55;
}

body.customers.logbook-page .logbook-select-wrap {
  position: relative;
}

body.customers.logbook-page .logbook-form-select {
  appearance: none;
  padding-right: 2.25rem;
  cursor: pointer;
}

body.customers.logbook-page .logbook-select-chevron {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6f6258;
  opacity: 0.85;
}

body.customers.logbook-page .logbook-form-file {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 0.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.8125rem;
  color: #5c534c;
  border: 1px dashed rgb(157 82 26 / 0.35);
  border-radius: 8px;
  background: rgb(255 252 248 / 0.9);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

body.customers.logbook-page .logbook-form-file:hover {
  border-color: rgb(157 82 26 / 0.55);
  background: rgb(255 255 255 / 0.95);
}

body.customers.logbook-page .logbook-form-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #201914;
  cursor: pointer;
}

body.customers.logbook-page .logbook-form-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #9d521a;
}

body.customers.logbook-page .logbook-form-actions {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(32 25 20 / 0.08);
  text-align: center;
}

body.customers.logbook-page .logbook-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: min(100%, 14rem);
  padding: 0.9rem 2rem;
  border: 1px solid #9d521a;
  border-radius: 2px;
  background: #9d521a;
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

body.customers.logbook-page .logbook-form-submit:hover {
  background: rgb(138 72 22);
  border-color: rgb(138 72 22);
}

body.customers.logbook-page .logbook-form-submit:active {
  transform: translateY(1px);
}

body.customers.logbook-page .logbook-form-map-help {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #5c534c;
  max-width: 40rem;
}

body.customers.logbook-page .logbook-form-map-entered-intro {
  margin: 1rem 0 0.65rem;
  padding: 0.85rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #4a433c;
  background: linear-gradient(135deg, rgb(255 252 248) 0%, rgb(245 238 228 / 0.85) 100%);
  border: 1px solid rgb(157 82 26 / 0.18);
  border-radius: 0.5rem;
}

body.customers.logbook-page .logbook-form-grid--coords-entered {
  margin-top: 0.35rem;
}

body.customers.logbook-page .logbook-trail-map {
  width: 100%;
  height: 500px;
  min-height: 450px;
  border-radius: 10px;
  border: 1px solid rgb(32 25 20 / 0.12);
  overflow: hidden;
  background: #e8e4df;
  box-shadow: 0 10px 28px rgb(32 25 20 / 0.08);
  z-index: 0;
  direction: ltr;
}

@media (max-width: 640px) {
  body.customers.logbook-page .logbook-trail-map {
    height: min(500px, 70vh);
    min-height: 320px;
  }
}

/* Leaflet: theme/global `img { max-width: 100% }` shrinks raster tiles so vectors no longer match the basemap (line looks "wrong" vs trails.html). */
body.customers.logbook-page .logbook-trail-map.leaflet-container img {
  max-width: none !important;
}

body.customers.logbook-page .logbook-trail-map.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
}

body.customers.logbook-page .logbook-form-map-readout {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: #6f6258;
  font-variant-numeric: tabular-nums;
}

body.customers.logbook-page .logbook-my-entries {
  margin-bottom: 2.5rem;
}

body.customers.logbook-page .logbook-my-entries-head {
  margin-bottom: 1rem;
}

body.customers.logbook-page .logbook-public-filters {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgb(32 25 20 / 0.1);
  border-radius: 0.85rem;
  background: #faf8f6;
}

body.customers.logbook-page .logbook-public-filters__title {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f6258;
}

body.customers.logbook-page .logbook-public-filters__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  body.customers.logbook-page .logbook-public-filters__grid {
    grid-template-columns: 1fr;
  }
}

body.customers.logbook-page .logbook-public-filters__field .logbook-form-label {
  margin-bottom: 0.35rem;
}

body.customers.logbook-page .logbook-public-filters__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

body.customers.logbook-page .logbook-public-filters__submit {
  margin: 0;
}

body.customers.logbook-page .logbook-public-filters__clear {
  font-size: 0.9rem;
  font-weight: 500;
  color: #9d521a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.customers.logbook-page .logbook-public-filters__clear:hover,
body.customers.logbook-page .logbook-public-filters__clear:focus {
  color: #6b3d1f;
}

body.customers.logbook-page .logbook-my-entries-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #201914;
}

body.customers.logbook-page .logbook-my-entries-by {
  margin: 0;
  font-size: 0.875rem;
  color: #6f6258;
}

body.customers.logbook-page .logbook-my-entries-empty {
  margin: 0;
  padding: 1.25rem 1rem;
  border: 1px dashed rgb(32 25 20 / 0.18);
  border-radius: 0.75rem;
  background: rgb(250 248 246 / 0.9);
  color: #5c534c;
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* Posted problems — detail cards */
body.customers.logbook-page .logbook-entry-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

body.customers.logbook-page .logbook-entry-card {
  border: 1px solid rgb(32 25 20 / 0.12);
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem 1.35rem 1.35rem;
  box-shadow: 0 1px 0 rgb(0 0 0 / 0.04);
}

body.customers.logbook-page .logbook-entry-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(32 25 20 / 0.08);
}

body.customers.logbook-page .logbook-entry-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #201914;
  line-height: 1.35;
  flex: 1 1 12rem;
}

body.customers.logbook-page .logbook-entry-card__grade {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgb(157 82 26 / 0.12);
  color: #6b3d1f;
  border: 1px solid rgb(157 82 26 / 0.25);
}

body.customers.logbook-page .logbook-entry-card__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  body.customers.logbook-page .logbook-entry-card__layout--with-media {
    grid-template-columns: 11rem minmax(0, 1fr);
    align-items: start;
  }
}

body.customers.logbook-page .logbook-entry-card__media {
  text-align: center;
}

body.customers.logbook-page .logbook-entry-card__media-link {
  display: block;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgb(32 25 20 / 0.1);
  line-height: 0;
}

body.customers.logbook-page .logbook-entry-card__img {
  width: 100%;
  height: auto;
  max-height: 14rem;
  object-fit: cover;
  vertical-align: middle;
}

body.customers.logbook-page .logbook-entry-card__media-caption {
  margin: 0.4rem 0 0;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a7f76;
}

body.customers.logbook-page .logbook-entry-card__meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: 0.65rem 1.25rem;
}

body.customers.logbook-page .logbook-entry-card__meta-row {
  margin: 0;
}

body.customers.logbook-page .logbook-entry-card__meta-row dt {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a7f76;
}

body.customers.logbook-page .logbook-entry-card__meta-row dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #201914;
  word-break: break-word;
}

body.customers.logbook-page .logbook-entry-card__meta-row--full {
  grid-column: 1 / -1;
}

body.customers.logbook-page .logbook-entry-card__loc {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

body.customers.logbook-page .logbook-entry-card__maplink {
  font-weight: 600;
  color: #9d521a;
}

body.customers.logbook-page .logbook-entry-card__maplink:hover {
  color: #6b3d1f;
}

body.customers.logbook-page .logbook-entry-card__coord {
  font-variant-numeric: tabular-nums;
}

body.customers.logbook-page .logbook-entry-card__entered {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 0.5rem;
  background: linear-gradient(160deg, rgb(255 252 248) 0%, rgb(239 228 216 / 0.55) 100%);
  border: 1px solid rgb(157 82 26 / 0.2);
  border-left: 4px solid #c97c3a;
}

body.customers.logbook-page .logbook-entry-card__entered-label {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9d521a;
}

body.customers.logbook-page .logbook-entry-card__entered-value {
  margin: 0;
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #2a211c;
  font-variant-numeric: tabular-nums;
}

body.customers.logbook-page .logbook-entry-card__entered-sep {
  margin: 0 0.4rem;
  color: #9d8f84;
}

body.customers.logbook-page .logbook-entry-card__beta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(32 25 20 / 0.08);
}

body.customers.logbook-page .logbook-entry-card__beta-title {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9d521a;
}

body.customers.logbook-page .logbook-entry-card__beta-body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #3d3834;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

/* Logbook: full-page map for one entry (clients/logbook_location/{id}) */
body.customers.logbook-map-page .logbook-entry-map-page {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

body.customers.logbook-map-page .logbook-entry-map-toolbar {
  margin: 0 0 0.75rem;
}

body.customers.logbook-map-page .logbook-entry-map-back {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #9d521a;
  text-decoration: none;
}

body.customers.logbook-map-page .logbook-entry-map-back:hover {
  color: #6b3d1f;
  text-decoration: underline;
}

body.customers.logbook-map-page .logbook-entry-map-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 600;
  color: #201914;
}

body.customers.logbook-map-page .logbook-entry-map-entered {
  margin: 0 0 1.25rem;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 0.65rem;
  background:
    radial-gradient(120% 80% at 0% 0%, rgb(255 252 248 / 0.95) 0%, transparent 55%),
    linear-gradient(145deg, rgb(250 244 236) 0%, rgb(232 218 204 / 0.65) 48%, rgb(220 198 176 / 0.35) 100%);
  border: 1px solid rgb(157 82 26 / 0.22);
  box-shadow: 0 0.35rem 1.25rem rgb(42 24 16 / 0.06);
}

body.customers.logbook-map-page .logbook-entry-map-entered__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9d521a;
}

body.customers.logbook-map-page .logbook-entry-map-entered__heading {
  margin: 0 0 0.85rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: #2a211c;
}

body.customers.logbook-map-page .logbook-entry-map-entered__coords {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
}

body.customers.logbook-map-page .logbook-entry-map-entered__pair {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

body.customers.logbook-map-page .logbook-entry-map-entered__axis {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f6258;
}

body.customers.logbook-map-page .logbook-entry-map-entered__num {
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #201914;
  font-variant-numeric: tabular-nums;
}

body.customers.logbook-map-page .logbook-entry-map-entered__divider {
  display: inline-block;
  width: 1px;
  align-self: stretch;
  min-height: 2.25rem;
  background: linear-gradient(to bottom, transparent, rgb(157 82 26 / 0.35), transparent);
}

body.customers.logbook-map-page .logbook-entry-map {
  width: 100%;
  height: min(72vh, 640px);
  min-height: 400px;
  border-radius: 0.125rem;
  border: 1px solid rgb(32 25 20 / 0.12);
  overflow: hidden;
  background: #e8e4df;
  direction: ltr;
}

body.customers.logbook-map-page .logbook-entry-map.leaflet-container img {
  max-width: none !important;
}

body.customers.logbook-map-page .logbook-entry-map.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
}

body.customers.logbook-map-page .logbook-entry-map-trail {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: #3d342c;
}

body.customers.logbook-map-page .logbook-entry-map-trail__label {
  color: #6f6258;
  font-weight: 500;
}

body.customers.logbook-map-page .logbook-entry-map-readout {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: #6f6258;
  font-variant-numeric: tabular-nums;
}

/* Public community logbook — month groups (same shell as client logbook cards) */
body.customers.logbook-page.public-logbook-page .logbook-month-section {
  margin-bottom: 2.25rem;
}

body.customers.logbook-page.public-logbook-page .logbook-month-section:last-of-type {
  margin-bottom: 0;
}

body.customers.logbook-page.public-logbook-page .logbook-month-title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #201914;
  letter-spacing: -0.01em;
}

body.customers.logbook-page .logbook-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
