/* ==============================
   Cookie Banner Styles
   ============================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  color: #222;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  z-index: 9999;
  display: none; /* Hidden until JS shows it */
  font-family: inherit;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.cookie-banner a {
  color: #0073aa;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  margin: 0;
  padding: 7px 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  color: #333;
  cursor: pointer;
  transition: 0.2s;
  font-size: 13px;
}

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

#accept-cookies {
  background: #0073aa;
  color: #fff;
  border: 1px solid #0073aa;
}

#accept-cookies:hover {
  background: #005f8d;
}
