#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1f1f1f;
  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 */
  z-index: 9999;
  padding: 20px;
  font-size: 14px;
}

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

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

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

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