.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 350px;
  background-color: #6c3eb6;
  padding: 20px;
  text-align: center;
  display: none;
  border-radius: 4px;
  z-index: 999;
  color: var(--text-color);
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  animation: openBanner 1s ease-out forwards;
}

@keyframes openBanner {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.cookie-banner button {
  margin: 0 10px;
  font-size: 20px;
}

.accept-cookie-btn {
  border: 1px solid #a084e8;
  padding: 10px;
  background-color: transparent;
  border-radius: var(--border-radius);
  color: #fff;
  transition: color 1s ease, background-color 1s ease, border 1s ease;
}

.accept-cookie-btn:hover {
  border: 1px solid #a084e8;
  background-color: #a084e8;
}

.reject-cookie-btn {
  border: 1px solid #a084e8;
  padding: 10px;
  background-color: transparent;
  border-radius: var(--border-radius);
  color: #fff;
  transition: color 1s ease, background-color 1s ease, border 1s ease;
}

.reject-cookie-btn:hover {
  border: 1px solid #b84e8a;
  background-color: #b84e8a;
}
