/* Floating Button Styles */
#accessibility-icon {
    position: fixed;
    bottom: 100px; /* Adjusted from 20px to 100px to avoid overlap */
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#accessibility-icon:hover {
    transform: scale(1.1);
}

/* Accessibility Menu Styles */
#accessibility-menu {
    position: fixed;
    bottom: 160px; /* Adjusted to stay aligned with the new button position */
    left: 20px;
    width: 250px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Initially hidden */
    z-index: 999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Accessibility Menu Item */
.accessibility-item {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accessibility-item button {
    width: 100%;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accessibility-item button:hover {
    background-color: #0056b3;
}
