#cookie-banner {
  position: fixed;
  bottom: 43px;
  left: 20px;
  max-width: 320px;
  background: #1e293b;
  color: white;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  font-size: 14px;
}

#cookie-banner a {
  color: #60a5fa;
  text-decoration: underline;
}

#cookie-banner button { 
  margin-top: 12px;
  width: 100%;
  background: #4D94F9  ;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 480px) {
  #cookie-banner {
    left: 10px;
    right: 10px;
    max-width: unset;
  }
}