.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #004da5;
  color: #fff;
  padding: 20px;
  border: 2px solid orangered;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  font-size: 14px;
  z-index: 1000;
  display: none;
  animation: slide-in 0.5s ease forwards;
}

.cookie-popup p {
  margin: 0 0 20px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cookie-buttons button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  font-weight: 600;
}

.cookie-buttons button#acceptCookie {
  background: #34c759;
  color: #fff;
}

.cookie-buttons button#acceptCookie:hover {
  background: #28a745;
  transform: scale(1.05);
}

.cookie-buttons button#declineCookie {
  background: #ff3b30;
  color: #fff;
}

.cookie-buttons button#declineCookie:hover {
  background: #d32f2f;
  transform: scale(1.05);
}


@keyframes slide-in {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
