:root {
  --bg: #9b0000;
  --panel: #f7f7f7;
  --text: #050505;
  --muted: #9a9a9a;
  --accent: #ffffff;
  --input-bg: #f7f7f7;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

/* TOP BAR */
.topbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 500;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent);
}

.topbar h1 {
  font-size: 1rem;
  font-weight: 600;
}

.topbar input {
  background: var(--panel);
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text);
}

/* MAP */
.map-wrapper {
  position: fixed;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all .45s cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
}


/* Map inside wrapper */
#map {
  width: 100%;
  height: 100%;
}

/* Full screen mode */
.map-wrapper.fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}



/* FAB */
.fab {
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: black;
  font-size: 28px;
  cursor: pointer;
  z-index: 600;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-card {
  background: var(--panel);
  padding: 20px;
  width: 320px;
  border-radius: 14px;
}

.modal-card h2 {
  margin-top: 0;
}

.modal-card input {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #222;
  color: var(--text);
}

/* File */
.file-drop {
  display: block;
  padding: 14px;
  border-radius: 10px;
  background: #222;
  text-align: center;
  margin-bottom: 12px;
  cursor: pointer;
}

.file-drop input {
  display: none;
}

/* Actions */
.modal-actions {
  display: flex;
  gap: 10px;
}

.modal-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.modal-actions .ghost {
  background: transparent;
  color: var(--muted);
}

.leaflet-popup-content img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 10px;
  background: #000;
}


.popup-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.4;
}

.tag {
  display: inline-block;
  background: #222;
  padding: 2px 6px;
  border-radius: 6px;
  margin-right: 4px;
  font-size: 0.7rem;
}

/* POPUP CARD */
.popup-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* CAMERA + SETTINGS */
.popup-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #eaeaea;
}

.popup-meta .camera {
  opacity: 0.85;
}

.popup-meta .settings {
  opacity: 0.7;
  margin-bottom: 4px;
}

/* TAGS */
.tags {
  margin-top: 4px;
}

.tag {
  display: inline-block;
  background: #1f1f22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 999px;
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

.leaflet-tile {
  filter: contrast(0.95) brightness(0.95);
}

/* TAG SEARCH (BOTTOM CENTER) */
.tag-search {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 650;
}

.tag-search input {
  width: 260px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: rgba(23, 23, 26, 0.95);
  color: white;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.tag-search input::placeholder {
  color: #aaa;
}

#authBtn {
  position: fixed;
  top: 10px;
  left: 10px;
  background: #ffffff;
  padding: 20px;
  border-radius: 50px;
  display: flex;
  gap: 6px;
  z-index: 999;
  color: rgb(0, 0, 0);
}

.authBtn input {
  background: #222;
  border: none;
  color: white;
  padding: 6px;
  border-radius: 6px;
}



/* SPLASH */

#splash {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .6s ease;
}

.splash-circle {
  position: absolute;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  animation: expand 1.1s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes expand {
  to {
    transform: scale(90);
  }
}

.splash-logo {
  position: relative;
  color: black;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.splash-logo video {
  width: 180px;
  opacity: 0;
  animation: showLogo .2s forwards;
  animation-delay: .9s;
  pointer-events: none;
}


@keyframes showLogo {
  to {
    opacity: 1;
  }
}

.splash-logo {
  z-index: 2;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* MAP */
#map {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 0;

}

/* TOP BAR BUTTONS */
.top-left-btn {
  position: fixed;
  top: 16px;
  padding: 10px 16px;
  border-radius: 50px;
  border: none;
  background: var(--panel);
  color: var(--text);
  font-weight: 600;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.top-left-btn {
  left: 16px;
}


/* BOTTOM BUTTONS */
.bottom-buttons {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 650;
}

.bottom-buttons button {
  padding: 14px 18px;
  border-radius: 50px;
  border: none;
  background: var(--panel);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.1s ease;
}

.bottom-buttons button:hover {
  transform: translateY(-2px);
}

/* TAG SEARCH */
.tag-search {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 650;
}

.tag-search input {
  width: 260px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: rgba(23, 23, 26, 0.95);
  color: white;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.tag-search input::placeholder {
  color: #aaa;
}

/* MODALS */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-card {
  background: var(--panel);
  padding: 20px;
  width: 320px;
  border-radius: 14px;
}

.modal-card h2 {
  margin-top: 0;
}

.modal-card input {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: white;
  color: var(--text);
}

.file-drop {
  display: block;
  padding: 14px;
  border-radius: 10px;
  background: #222;
  text-align: center;
  margin-bottom: 12px;
  cursor: pointer;
}

.file-drop input {
  display: none;
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.modal-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.modal-actions .ghost {
  background: transparent;
  color: var(--muted);
}

/* POPUPS */
.leaflet-popup-content img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 10px;
  background: #000;
}

.popup-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #eaeaea;
}

.popup-meta .camera {
  opacity: 0.85;
}

.popup-meta .settings {
  opacity: 0.7;
  margin-bottom: 4px;
}

.tags {
  margin-top: 4px;
}

.tag {
  display: inline-block;
  background: #1f1f22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 999px;
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

/* SPLASH */
#splash {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .6s ease;
}

.splash-circle {
  position: absolute;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  animation: expand 1.1s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes expand {
  to {
    transform: scale(90);
  }
}

.splash-logo {
  position: relative;
  color: black;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: .05em;
}

#logoText {
  opacity: 0;
  animation: showText .2s forwards;
  animation-delay: .9s;
}

@keyframes showText {
  to {
    opacity: 1;
  }
}

/* INFO PANEL */
#homeContent {
  padding-bottom: 20vh;
  max-width: 75vw;
  margin: auto;
  color: white;
  display: none;
}

#homeContent img {
  width: 100%;
  border-radius: 12px;
  margin: 12px 0;
}

.map-wrapper.compact {
  position: relative;
  /* was fixed, now relative so page can scroll */
  width: 75vw;
  height: 60vh;
  margin: 100px auto 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, .25);
  z-index: 0;
}

body.compact {
  overflow-y: auto;
  /* allow vertical scrolling */
  overscroll-behavior: contain;
}

body {
  overflow: hidden;
  /* fullscreen map blocks scroll by default */
}

.leaflet-control-attribution {
  display: none !important;
}

#authModal .modal-card button {
  width: 100%;
  margin-bottom: 8px;
  padding: 12px;
  font-size: 1rem;
}

#authModal .modal-card button#googleBtn {
  background: #9b0000;
  color: white;
}

/* Feedback Button */
#feedbackSection {
  margin: 20px 0;
}

#feedbackBtn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: #ffffff;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

#feedbackBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Feedback Modal Textarea */
#feedbackModal textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #222;
  color: white;
  resize: vertical;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

/* Modal Buttons */
#feedbackModal .modal-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

#feedbackModal .modal-actions .ghost {
  background: transparent;
  color: var(--muted);
}

#supportSection {
  text-align: center;
  margin: 20px 0;
}

#supportBtn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: #ffffff;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

#supportBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.delete-marker {
  margin-top: 10px;
  width: 100%;
  background: #e53935;
  border: none;
  padding: 8px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.delete-marker:hover {
  background: #c62828;
}

.category-selector {
  margin: 10px 0;
  font-family: 'Inter', sans-serif;
}

.category-selector label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

.category-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.category-options button {
  background: #2c2c2c;
  color: #fff;
  border: 1px solid #555;
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
}

.category-options button:hover {
  background: #444;
}

.category-options button.selected {
  background: #ff4d6d;
  /* heart-red accent */
  border-color: #ff4d6d;
  color: #fff;
}

.report-marker {
  margin-top: 8px;
  background: #ff4444;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.report-marker:hover {
  opacity: 0.8;
}

.consent-box {
  background: #222;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  max-height: 150px;
  overflow-y: auto;
}

.premium-btn {
  top: 64px;
  /* pushes it under settings */
  background: gold;
  color: black;
}

/* PREMIUM MODAL */

.premium-card {
  text-align: center;
}

.premium-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.premium-features {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  font-size: 0.9rem;
}

.premium-features li {
  background: #1f1f22;
  color: white;
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

/* CTA button */

.premium-cta {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: gold;
  color: black;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 10px;
  box-shadow: 0 6px 16px rgba(255, 215, 0, .4);
  transition: transform .15s ease;
}

.premium-cta:hover {
  transform: translateY(-2px);
}

/* Close button */

#closePremium {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  border: none;
  cursor: pointer;
}

/* REPORT MODAL */
#reportModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#reportModal .modalCard {
  background: #1b1b1f;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  color: white;
  font-family: Inter, sans-serif;
}

#reportModal h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
}

.report-options label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.report-options input[type="radio"] {
  margin-right: 10px;
}

.report-options label:hover {
  color: #2563eb;
  /* subtle highlight */
}

#otherReason {
  width: 100%;
  min-height: 80px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #222;
  color: white;
  resize: none;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
}

.modalActions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.modalActions button {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.modalActions button:hover {
  opacity: 0.9;
}

.modalActions .ghost {
  background: #333;
  color: white;
}

.modalActions button:not(.ghost) {
  background: #ef4444;
  color: white;
}

.hidden {
  display: none !important;
}

.google-maps-btn {
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 4px;
}

.google-maps-btn:hover {
  background: #e0e0e0;
}

.updates-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.update-card {
  color: white;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.update-card h3 {
  margin: 0 0 8px 0;
}

.update-card ul {
  margin: 0;
  padding-left: 20px;
}

.shop-btn {
  top: 110px;
}

.right-buttons {
  position: fixed;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.right-buttons button {
  padding: 10px 16px;
  border-radius: 50px;
  border: none;
  background: var(--panel);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

#premiumBtn {
  background: gold;
  color: black;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.6);
}

#premiumBtn:hover {
  transform: translateY(-2px);
}

.premium-cta.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================= */
/* PREMIUM MODAL REDESIGN */
/* ============================= */

.premium-card {
  width: 100%;
  max-width: 900px;
  background: #111;
  color: white;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

.premium-card h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Grid Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Individual Plan */
.plan {
  background: #1b1b1f;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.plan:hover {
  transform: translateY(-6px);
}

/* Plan Title */
.plan h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Price */
.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Features */
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: center;
}

.plan ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* FREE */
.plan:first-child {
  background: #151518;
  opacity: 0.85;
}

/* PREMIUM (Most Popular) */
.plan.highlight {
  background: linear-gradient(145deg, #1f1f25, #151518);
  border: 2px solid gold;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.25);
  transform: scale(1.05);
}

.plan.highlight::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: gold;
  color: black;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ELITE */
.plan.elite {
  background: linear-gradient(145deg, #0f0f12, #1a1a20);
  border: 1px solid #444;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
}

.plan.elite h3 {
  color: #ff4d6d;
}

.plan.elite .price {
  color: #ff4d6d;
}

/* CTA Buttons */
.premium-cta {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  font-size: 1rem;
}

.plan:first-child .premium-cta {
  background: #333;
  color: #888;
  cursor: not-allowed;
}

.plan.highlight .premium-cta {
  background: gold;
  color: black;
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
}

.plan.highlight .premium-cta:hover {
  transform: translateY(-2px);
}

.plan.elite .premium-cta {
  background: #ff4d6d;
  color: white;
  box-shadow: 0 6px 18px rgba(255, 77, 109, 0.4);
}

.plan.elite .premium-cta:hover {
  transform: translateY(-2px);
}

.plan.left {
  transform: translateX(-75%) scale(0.88) rotateY(8deg);
}

.plan.right {
  transform: translateX(75%) scale(0.88) rotateY(-8deg);
}

/* ============================= */
/* MOBILE CARD CAROUSEL  */
/* ============================= */

@media (max-width: 768px) {

  .premium-card {
    width: 100%;
    padding: 10px 0 20px 0;
    overflow: hidden;
  }

  .pricing-grid {
    position: relative;
    height: 600px;
    /* taller container */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .plan {
    position: absolute;
    width: 70%;
    /* thinner */
    max-width: 300px;
    /* keeps it elegant */
    min-height: 500px;
    /* taller */
    padding: 30px 22px;
    /* more vertical spacing */
    transition: all 0.45s cubic-bezier(.22, 1, .36, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Center Card */
  .plan.active {
    transform: translateX(0) scale(1);
    z-index: 3;
    opacity: 1;
  }

  /* Left Card */
  .plan.left {
    transform: translateX(-75%) scale(0.88);
    z-index: 2;
    opacity: 0.6;
  }

  /* Right Card */
  .plan.right {
    transform: translateX(75%) scale(0.88);
    z-index: 2;
    opacity: 0.6;
  }

  /* Typography adjustments */
  .plan h3 {
    font-size: 1.2rem;
  }

  .price {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }

  .plan ul li {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }

  .premium-cta {
    margin-top: 20px;
    padding: 14px;
    border-radius: 14px;
  }

}

.back-btn {
  position: fixed;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 50px;
  background: #1f1f22;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
  z-index: 999;
}

.back-btn:hover {
  background: #2a2a2e;
}
.consent-box {
  background: #1b1b1f;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 18px;
  opacity: 0.9;
}

.consent-label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; /* keeps it centered always */
  gap: 10px;
  margin-top: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  user-select: none;
  text-align: center;
}

/* Custom Checkbox */
.consent-label input {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid gold;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.consent-label input:checked {
  background: gold;
  border-color: gold;
}

.consent-label input:checked::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 3px;
  font-size: 14px;
  font-weight: bold;
  color: black;
}
