.cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: white;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-size: 14px;
  border-radius: 0;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-width: 100%;
  margin: 0 auto;
}

.cookie-alert a {
  color: #8e54e2;
  text-decoration: underline;
  margin: 0 5px;
}

.cookie-alert button {
  background-color: #8e54e2;
  border: none;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-alert.hide {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.cookie-settings {
  position: fixed;
  bottom: 100px;
  left: 20px;
  right: 20px;
  background-color: #fff;
  color: #000;
  padding: 20px;
  z-index: 9999;
  max-width: 600px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: opacity 0.4s ease;
  font-size: 14px;
}

.cookie-settings.hide {
  display: none;
}
