
/* app/static/css/cookie_banner.css */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 12px 14px;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.35;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__actions {
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    display: flex;
    justify-content: flex-end;
  }
}