/* .accessibility-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 10px;
  z-index: 9999;
  font-size: 14px;
  width: 220px;
}
.accessibility-widget button {
  display: block;
  width: 100%;
  margin: 5px 0;
  padding: 6px 10px;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s;
}
.accessibility-widget button:hover {
  background: #ddd;
} */

/* Balloon Button */
.float-container {
  position: fixed;
  bottom: 30px;
  right: 90px;
  z-index: 1000;
}
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  color: #28a745;
  font-size: 30px;
  border: 2px solid #28a745;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.float-btn:hover {
  color: #fff;
  background-color: #28a745;
}
.float-content {
  display: none;
  position: absolute;
  bottom: 60px; /* above the button */
  right: 0;
  background-color: #28a745;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 250px;
  font-size: 1rem;
}
.float-container:hover .float-content {
  display: block;
}
/* High Contrast */
.high-contrast {
  background-color: #000 !important;
  color: yellow !important;
}
.high-contrast {
  a,
  button {
    color: cyan !important;
    background-color: #000 !important;
    border-color: cyan !important;
  }
}
.high-contrast img {
  filter: invert(100%);
  transition: 0.3s ease;
}
.high-contrast {
  .bg-white,
  .bg-light,
  .card,
  .btn-primary-green,
  .bg-gradient-green,
  .bg-gradient-green-op1,
  .bg-gradient-green-op2,
  .bg-gradient-green-op3,
  .bg-gradient-orange,
  .bg-gradient-blue,
  .bg-gradient-lightgreen,
  .bg-cover-ctrl,
  .content-overflow::after {
    background-color: #000 !important;
    background-image: none !important;
  }
}
.font-resize {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  b,
  a,
  em,
  ul,
  ol,
  li,
  strong,
  button,
  span
   {
    font-size: unset !important;
  }
}