
#ikm-accessibility-toggle {
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
/* Only applies when contrast mode is toggled on the wrapper */
#main-contrast-wrapper.contrast-mode {
  background-color: #000 !important;
  color: #fff !important;
}

#main-contrast-wrapper.contrast-mode * {
  background-color: transparent !important;
  color: #ff0 !important; /* Yellow text */
  border-color: #ff0 !important;
}

/* Images should remain visible and get yellow borders */
#main-contrast-wrapper.contrast-mode img {
  border: 2px solid #ff0 !important;
  filter: none !important;
}
/* The hidden panel (appears on hover) */
.ikm-widget-panel {
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: .5rem;
  margin-top: 1rem;
}
/* Buttons inside panel */
.ikm-widget-panel button {
  margin: .25rem 0;
  padding: .4rem .8rem;
  border: none;
  border-radius: .3rem;
  color: #000;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s;
}
