/* dialog-voicepicker.css
 *
 * Styles for the Voice Picker Dialog and the main panel voice picker button.
 */

/* *******************************************************
 * Voice Picker Dialog footer
 * ******************************************************* */

.vpd-footer {
    flex-shrink: 0;
    padding: 14px 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: white;
    border-radius: 0 0 12px 12px;
}

/* *******************************************************
 * 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 #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    text-align: left;
    color: #333;
    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: #667eea;
}

.voice-picker-button:focus {
    outline: none;
    border-color: #667eea;
}

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