/* Samtykkebanner for informasjonskapsler – Lexend */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2E3F55;
  color: #fff;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Lexend', sans-serif;
  font-size: 16px; /* base size so rem below stay readable */
  min-height: 120px;
  box-sizing: border-box;
}

.cookie-consent-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cookie-consent-text {
  margin: 0 0 1rem;
  font-size: clamp(15px, 1.05rem, 18px);
  line-height: 1.5;
}

.cookie-consent-text a {
  color: #3EACC4;
  text-decoration: underline;
}

.cookie-consent-settings {
  margin-bottom: 1rem;
  padding: 0.75rem 0;
}

.cookie-consent-check {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(14px, 0.95rem, 17px);
  cursor: pointer;
}

.cookie-consent-check input {
  margin-right: 0.5rem;
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: clamp(14px, 1rem, 17px);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  min-height: 44px;
}

.cookie-btn-accept {
  background: #3EACC4;
  color: #fff;
}

.cookie-btn-deny {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}

.cookie-btn-settings {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.cookie-btn-save {
  background: #3EACC4;
  color: #fff;
}

.cookie-btn-accent {
  background: #3EACC4;
  color: #fff;
  margin-top: 0.5rem;
}

/* Melding når kapsler er blokkert (f.eks. admin-innlogging) */
.cookie-blocked-message {
  max-width: 480px;
  margin: 1rem auto;
  padding: 1rem 1.25rem;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  color: #856404;
  font-family: 'Lexend', sans-serif;
}

.cookie-blocked-message p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.cookie-blocked-message .cookie-btn-accent {
  background: #2E3F55;
  color: #fff;
}
