/* cookie-notice.css */
#cookie-notice {
  display: none; /* hidden initially */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  font-family: Arial, sans-serif;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  z-index: 1000;
}

#cookie-notice .cookie-link {
  color: #ffc107;
  text-decoration: underline;
  margin: 0 8px;
}

#cookie-notice .cookie-btn {
  background: #1e7e34; /* darker green */
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.3s ease;
}

#cookie-notice .cookie-btn:hover {
  background: #218838;
}
