#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
}

.cookie-box {
  background: #fff;
  color: #333;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  max-width: 90vw;
  width: 480px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
  font-size: 14px;
  animation: fadeInUp 0.4s ease;
}

.cookie-box a {
  color: #007BFF;
  text-decoration: underline;
}

.cookie-box button {
  background-color: #fe453c;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
}

.cookie-box button:hover {
  border: 1px solid #fe453c;
  color: #fff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
