/* Snaveo Analytics Implementation v1 -- consent banner.
   Minimal, no dark patterns: "Avvisa" and "Acceptera analys" are the same
   size/weight/prominence so rejecting is exactly as easy as accepting. */

.snaveo-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #E7E4DD;
  box-shadow: 0 -4px 20px rgba(20, 20, 16, 0.08);
}

.snaveo-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.snaveo-consent-text {
  flex: 1 1 420px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink, #23231f);
}

.snaveo-consent-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.snaveo-consent-actions .btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .snaveo-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .snaveo-consent-actions {
    justify-content: stretch;
  }
  .snaveo-consent-actions .btn {
    flex: 1 1 0;
  }
}
