/* dialog-voicepicker.css
 *
 * Styles for the Voice Picker Dialog and the main panel voice picker button.
 * The dialog itself uses db-overlay + db-dialog + db-header + db-body + db-footer.
 */

/* *******************************************************
 * Main panel voice picker button (replaces the dropdown)
 * ******************************************************* */

.voice-picker-button {
    flex: 1;
    min-width: 0;
    padding: 10px 35px 10px 12px;
    height: 46px;
    border: 2px solid #aaa;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #4a4a52;
    cursor: pointer;
    text-align: left;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.voice-picker-button:hover {
    border-color: #2dd4bf;
}

.voice-picker-button:focus {
    outline: none;
    border-color: #2dd4bf;
}

.voice-picker-button::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    pointer-events: none;
}
