/* Accessibility Styles */

/*--------------------------------------------------------------
# Focus Ring
--------------------------------------------------------------*/
:focus {
  outline: 3px solid #007bff;
  outline-offset: 2px;
}

/*--------------------------------------------------------------
# High Contrast Mode
--------------------------------------------------------------*/
.high-contrast {
  background-color: #000 !important;
  color: #fff !important;
}

.high-contrast a {
  color: #ffff00 !important;
}

.high-contrast .button {
  background-color: #000 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; /* Align to the left */
  width: 100%; /* Full width */
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#cookie-consent-banner p {
  margin: 0;
  font-size: 0.8em;
  flex-grow: 1;
}

#cookie-consent-banner button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.7em;
  transition: background-color 0.3s ease;
}

#cookie-consent-banner button:hover {
  background-color: #0056b3;
}