.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background-color: #ffffff;
  color: #5F5F5F;
  padding: 20px 15px 15px 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-size: 14px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-popup.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-popup .close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 18px;
  color: #5F5F5F;
  cursor: pointer;
}

.cookie-popup .close-button:hover {
  color: #999;
}

.cookie-popup p {
  margin: 0;
  line-height: 1.4;
}

.cookie-popup a {
  color: #2374b8;
  text-decoration: none;
}

.cookie-popup a:hover {
  text-decoration: underline;
}

.cookie-popup button {
  margin-top: 10px;
  background-color: #2374b8;
  color: white;
  border: none;
  padding: 7px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-popup button:hover {
  background-color: #1d5e97;
}