/* Copyright (c) 2026, CTO Resources LLC */
#ue-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #0f172a;
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem clamp(1rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
#ue-cookie-banner .ue-cookie-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 640px;
  flex: 1 1 320px;
}
#ue-cookie-banner .ue-cookie-text a {
  color: #93c5fd;
  text-decoration: underline;
}
#ue-cookie-banner .ue-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
#ue-cookie-banner .ue-cookie-btn {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  transition: all 0.15s;
}
#ue-cookie-banner .ue-cookie-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
#ue-cookie-banner .ue-cookie-btn:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 2px;
}
#ue-cookie-banner .ue-cookie-btn-accept {
  background: #3b82f6;
  border-color: #3b82f6;
}
#ue-cookie-banner .ue-cookie-btn-accept:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.ue-footer-cookie-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #94a3b8;
  text-decoration: none;
  cursor: pointer;
}
.ue-footer-cookie-link:hover {
  color: #cbd5e1;
  text-decoration: underline;
}

@media (max-width: 640px) {
  #ue-cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  #ue-cookie-banner .ue-cookie-actions {
    justify-content: stretch;
  }
  #ue-cookie-banner .ue-cookie-btn {
    flex: 1;
  }
}
