body {
  font-family: Arial, sans-serif;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: white;
  padding: 20px;
  display: none; /* Initially hidden */
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 14px;
}

.cookie-consent-message p {
  margin: 0;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
}

.cookie-consent-button {
  background-color: #f1c40f;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
}

.cookie-consent-button:hover {
  background-color: #d4b92f;
}
