/* Accessibility Widget Container */
#accessibility-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Toggle Button */
#toggle-accessibility {
    background-color: #15b9d9;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Expanded Widget Panel */
#widget-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #fff;
    color: #333;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 250px;
    font-size: 14px;
}

/* Widget Panel Title */
#widget-panel h3 {
    font-size: 16px;
    margin-top: 0;
    color: #333;
}

/* Language Selection Dropdown */
#language-select {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
}

/* TTS Option */
.option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

#tts-toggle {
    margin-left: 10px;
}
