.ad-disclosure {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  background: #fff9c4; /* lys gul */
  color: #222;
  border: 1px solid #f0e08a;
  border-radius: 6px;
  padding: 10px 14px;
  margin: 12px 0;
  display: block;
  user-select: none;           /* gør markering svær */
  -webkit-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

.ad-disclosure__inner {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Sticky tilstand */
.ad-disclosure--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  border-radius: 0;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Respektér WP admin bar */
.admin-bar .ad-disclosure--sticky {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .ad-disclosure--sticky {
    top: 46px;
  }
}

/* Placeholder holder højde i layout når element bliver sticky */
.ad-disclosure__ph {
  height: 0;
  margin: 0;
  padding: 0;
}
