#cookieConsentModal {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 300px;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

#cookieConsentModal p {
  margin-bottom: 10px;
}

#cookieConsentModal button {
  padding: 10px 15px;
  margin-right: 10px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

#cookieConsentModal #acceptBtn {
  background-color: #4CAF50; /* Green */
  color: white;
}

#cookieConsentModal #declineBtn {
  background-color: #f44336; /* Red */
  color: white;
}