/* cookie-banner.css */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #134aa8;
  color: white;
  padding: 1rem;
  z-index: 9999;
  font-family: sans-serif;
}

#cookie-banner .cookie-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#cookie-banner p {
  margin: 0;
  flex: 1 1 100%;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

#accept-cookies,
#decline-cookies {
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

#accept-cookies {
  background-color: #ff6b00;
  color: white;
}

#decline-cookies {
  background-color: white;
  color: #134aa8;
}
