#cookieConsentBanner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: white;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.cookie-buttons button {
  margin-top: 10px;
  margin-right: 10px;
  padding: 8px 16px;
  border: none;
  background: #10b981;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.cookie-buttons button:hover {
  background-color: #059669;
}

#langSelector {
  margin-top: 10px;
  font-size: 12px;
}