.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fdca39;
  color: black;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1000;
}
.consent-banner p {
  margin: 0;
}
.consent-buttons {
  display: flex;
  gap: 10px;
}
.consent-buttons button {
  background-color: #fdca39;
  color: black;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  border: 1px solid black;
  border-radius: 0.3rem;
  height: 30px;
  width: 110px;
}
.consent-buttons button:hover {
  background-color: #e0b32f;
}
#consent-reject {
  background-color: transparent;
  color: black;
  border: 1px solid black;
}
#consent-reject:hover {
  background-color: #e0b32f;
}

@media (max-width: 600px) {
  .consent-banner {
    flex-direction: column;
    text-align: center;
    font-size: 1.2rem;
  }
}
