/* Cookie consent banner styling. Extracted from base.html's inline
   <style> block so a strict CSP (no 'unsafe-inline' on style-src) can
   be enforced. */

body.with-cookie-bar {
  padding-bottom: 70px;
}

.cookie-bar {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  line-height: 1.45;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.95);
  color: #f8fafc;
  z-index: 1100;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-bar a {
  color: #93c5fd;
  margin: 0 0.25rem;
}

.cookie-bar a.cc-cookie-accept,
.cookie-bar a.cc-cookie-decline {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.cookie-bar a.cc-cookie-accept {
  background: #2563eb;
}
