#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f9f9f9;
  color: #333;
  padding: 1rem;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 9999;
  font-size: 14px;
}
#cookie-banner .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#cookie-banner p {
  margin: 0;
  padding: 0.5rem 0;
}
#cookie-accept-btn {
  background: #1565c0;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}
#cookie-banner a {
 color: #0d47a1;
 text-decoration: underline;
 font-weight: 600;
}

#cookie-banner a:focus,
#cookie-banner a:hover {
  color: #002171;
  outline: 2px solid #002171;
  outline-offset: 2px;
}
