.accessibility-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }
  
  .accessibility-btn {
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
  
  .accessibility-btn:hover {
    background-color: #2980b9;
    transform: scale(1.05);
  }
  
  .accessibility-btn.active {
    background-color: #ff7300;
  }
  
  .accessibility-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    margin-bottom: 10px;
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  body.text-enlarged {
    background-image: url('bg2.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}
  
  .accessibility-tooltip.fade-out {
    opacity: 0;
  }
  
  .accessibility-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
  }
  
  
  .text-enlarged p,
  .text-enlarged li,
  .text-enlarged td,
  .text-enlarged th,
  .text-enlarged figcaption,
  .text-enlarged label,
  .text-enlarged .consent-check,
  .text-enlarged details,
  .text-enlarged summary,
  .text-enlarged .info-links a {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
  }
  
  .text-enlarged .form-input,
  .text-enlarged .form-textarea {
    font-size: 1.1rem !important;
    padding: 1rem !important;
  }
  
  .text-enlarged .radio-group label {
    font-size: 1.1rem !important;
  }