/* Cookies Elite Banner — public styles
   Kept intentionally minimal; most styling is applied inline via PHP
   so the admin can control colors/radius without a stylesheet rebuild. */

#ceb-banner *,
#ceb-banner *::before,
#ceb-banner *::after {
  box-sizing: border-box;
}

#ceb-banner a {
  text-decoration: underline;
}

#ceb-banner button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Smooth reveal */
#ceb-banner {
  animation: ceb-fadein 0.2s ease;
}

@keyframes ceb-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive — stack buttons on very small screens */
@media (max-width: 420px) {
  #ceb-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    padding: 16px !important;
  }
  #ceb-banner > div:last-child {
    flex-direction: column;
  }
  #ceb-banner button {
    width: 100%;
    text-align: center;
  }
}
