#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #e6b31e;
  color: white;
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Space between text and buttons */
  flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
  font-size: 14px;
  padding: 20px;
  z-index: 9999999999;
}

#cookie-consent-banner p {
  margin: 0;
}

#cookie-consent-banner button {
  background-image: white;
  color: black;
  border: none;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 2px;
}

#cookie-consent-banner button:hover {
  background-color: black;
  color: white;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 600px) {
  #cookie-consent-banner {
    flex-direction: row;
    text-align: center;
    padding: 10px;
    font-size: 12px;
  }
  .button-cookies {
    margin-bottom: 20px;
  }
}

