/* Cookie consent banner styles */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--nav-bg);
  padding: 2.5rem 1rem 2.5rem 1rem;
  border-top: 1px solid #ccc;
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1002;
}

#cookie-consent button {
  background-color: var(--accent-color);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

#cookie-consent button:hover {
  background-color: var(--accent-hover);
}

#cookie-consent #decline-cookies:hover {
  background-color: var(--button-color);
}

/* Cookie settings link styles */
#cookie-settings {
  position: fixed;
  top: 10px;
  right: 10px;
  color: #666;
  text-decoration: none;
}

#cookie-settings:hover {
  color: #333;
}

@media (max-width: 768px) {
  #cookie-consent {
    display: block;
  }
  #cookie-text {
    padding-bottom: 1rem;
  }
}
