/* === COOKIE BANNER === */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#cookie-box {
  background-color: #ffffff;
  border: 2px solid #2c7744;
  max-width: 680px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  text-align: left;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#cookie-box img {
  height: 50px;
  margin-bottom: 12px;
}

#cookie-box h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #1f4037;
}

#cookie-box p,
#cookie-box ul {
  font-size: 0.95rem;
  line-height: 1.6;
}

#cookie-box ul {
  margin: 10px 0 0 20px;
  padding: 0;
  list-style-type: disc;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

.cookie-actions button {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.info-btn {
  background: transparent;
  color: #2c7744;
  border: 2px solid #2c7744;
}

.reject-btn {
  background-color: #888;
  color: white;
}

.accept-btn {
  background-color: #2c7744;
  color: white;
}

.accept-btn:hover {
  background-color: #245f38;
}
.reject-btn:hover {
  background-color: #666;
}
.info-btn:hover {
  background-color: #2c7744;
  color: white;
}

@media (max-width: 600px) {
  #cookie-box {
    padding: 20px;
  }
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
