#accessibility-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
#access-toggle-btn {
  background: #2387F7;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.access-panel {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  padding: 15px;
}
.access-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.access-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.access-grid button {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 6px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}
.access-grid button:hover {
  background: #e8f0ff;
  border-color: #2387F7;
}
.access-grid button i {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #2387F7;
}
