#cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4D4D4D;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  line-height: 1.5;
  z-index: 9999;
  transition: opacity 0.3s ease-in-out;
  width: 350px;
}

#cookie-banner.show {
  opacity: 1;
}

#cookie-banner p {
  margin: 0 0 10px;
}

#cookie-banner button {
  background-color: #FF8903;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

#learn-more {
  color: #fff;
  padding:10px;
}

#cookie-banner button:hover {
  background-color: #00b8d4;
}


#learn-more:hover {
  color: #b3bddd;
}

