/* MarbleMap cookie-consent banner — GDPR gate for GA4 Consent Mode v2 (default-denied until the
   visitor accepts/rejects here). Same contract as the Fusapp/FusappGo themes' fx-cookie banner
   (see Fusapp.CMS.Theme.FusappGo/wwwroot/assets/css/cookie-consent.css) but restyled to the
   MarbleMap palette (indigo #3b348c accent, navy #1c1945 ink — see the theme recolor in main.css)
   and namespaced mm- per this theme's convention (mm-lang-switch, mm-contact-status).
   Only linked in _Layout.cshtml when Analytics:GA4 has a measurement ID configured. */
.mm-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  padding: 16px;
}
.mm-cookie-consent[hidden] {
  display: none;
}
.mm-cookie-consent-inner {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e9e7f4;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(28, 25, 69, 0.18);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.mm-cookie-consent-text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.5;
  color: #1c1945;
}
.mm-cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.mm-cookie-btn {
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mm-cookie-btn-ghost {
  background: transparent;
  border-color: #e9e7f4;
  color: #1c1945;
}
.mm-cookie-btn-ghost:hover {
  background: #e9e7f4;
}
.mm-cookie-btn-solid {
  background: #3b348c;
  border-color: #3b348c;
  color: #ffffff;
}
.mm-cookie-btn-solid:hover {
  background: #1c1945;
  border-color: #1c1945;
}
@media (max-width: 520px) {
  .mm-cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .mm-cookie-consent-actions {
    justify-content: flex-end;
  }
}
