/* Voice selection modal (Modular) */
.voice-selection-container { display: flex; height: 500px; }
.voice-categories-sidebar { width: 200px; border-right: 1px solid #ddd; padding: 15px; }
.voice-selection-main { flex: 1; padding: 15px; }
.voice-category-list { list-style: none; padding: 0; margin: 0; }
.voice-category-list li { padding: 8px 12px; cursor: pointer; border-radius: 4px; margin-bottom: 3px; }
.voice-category-list li:hover,
.voice-category-list li.active { background: #f0f0f0; }
.voice-list { max-height: 400px; overflow-y: auto; }
.voice-item { padding: 12px; border: 1px solid #ddd; border-radius: 6px; margin-bottom: 8px; cursor: pointer; background: #fff; }
.voice-item:hover { background: #f8f9fa; }
.voice-item-header { display: flex; justify-content: space-between; align-items: center; }
.voice-item-title { font-weight: bold; }
.voice-item-duration { color: #666; font-size: 12px; }
.voice-item-description { color: #888; font-size: 13px; margin-top: 4px; }

