/* COOKIE CONSENT — Kraken-WebApp */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  border-top: 1px solid #333;
  color: #ddd;
  padding: 12px 20px;
  z-index: 9999;
  font-family: inherit;
  font-size: .85rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,.4);
}
#cookieConsent .cc-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
#cookieConsent .cc-text {
  flex: 1;
  min-width: 280px;
  line-height: 1.5;
}
#cookieConsent .cc-text a {
  color: #FFD600;
  text-decoration: none;
  font-weight: 600;
}
#cookieConsent .cc-text a:hover {
  text-decoration: underline;
}
#cookieConsent .cc-btn {
  background: #FFD600;
  color: #111;
  border: 0;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
  transition: background .15s;
}
#cookieConsent .cc-btn:hover {
  background: #ffdf33;
}
