.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: auto;
  right: auto;
  left: 20px;
  background-color: #23414C;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
  z-index: 10000;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90vw;
  opacity: 0.9;
}

.cookie-banner.hidden {
  display: none;
}
.cookie-content {
    display: flex;
    align-items: center;
    flex: 1;
}
.cookie-content p {
  margin: 0;
  padding-right: 10px;
}
.buttons button {
  background-color: #244C23;
  border: none;
  color: white;
  padding: 8px 16px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.buttons button#decline-cookies {
  background-color: #9F0808;
}

.buttons button:hover {
  opacity: 0.9;
}
