/* Styles for cookie compliance popup */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: rgba(0, 0, 0, 1);
  color: white;
  text-align: center;
  padding: 30px;
  z-index: 1000;
  display: none; /* Hidden by default */
}

.cookie-consent p {
  margin: 0;
  display: inline-block;
  z-index: 1001;
  color: white;
  font-size: 18px;
}

.cookie-consent button {
  margin-left: 10px;
  padding: 5px 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

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