/* Cookie popup styles */

#cookie-popup {
  font-family: "Segoe UI", Tahoma, sans-serif;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #1f1f2e;
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  font-size: 1rem;
  max-width: 100%;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

#cookie-popup a {
  color: #ffffff;
  font-weight: 600;
}

#cookie-popup a:hover {
  color: #ffcccb;
  text-decoration: underline;
}

#accept-cookies {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #ffffff;
  color: #1f1f2e;
  border: none;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#accept-cookies:hover {
  background-color: #ffcccb;
}
