/* Voice Clone UI Styles */

.voice-clone-setup {
    max-width: 600px;
    margin: 1.5rem auto;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.vc-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.vc-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.vc-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #e7f3ff;
    border-radius: 8px;
}

.benefit {
    font-size: 0.95rem;
}

.vc-instructions ol {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.vc-instructions li {
    margin: 0.5rem 0;
}

.vc-sample-text {
    margin: 1.5rem 0;
}

.vc-sample-text blockquote {
    background: #fff;
    padding: 1rem;
    border-left: 4px solid #667eea;
    border-radius: 0 8px 8px 0;
    margin: 0.5rem 0;
    font-style: italic;
}

.vc-recording-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.recording-status {
    text-align: center;
    padding: 0.75rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.recording-status.active {
    background: #ffe0e0;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.recording-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.recording-controls button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.recording-controls button.recording {
    background: #dc3545;
    color: white;
    animation: pulse 1s infinite;
}

.samples-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sample-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 8px;
}

.sample-item audio {
    flex: 1;
    height: 36px;
}

.btn-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    background: none;
    border: none;
    cursor: pointer;
}

.vc-success {
    text-align: center;
    padding: 2rem;
}

.vc-success h3 {
    font-size: 1.75rem;
    color: #28a745;
    margin-bottom: 1rem;
}

/* Personalized audio button in pronunciation practice */
.personalized-audio-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.personalized-audio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.clone-prompt-banner {
    background: linear-gradient(135deg, #667eea22, #764ba222);
    border: 1px solid #667eea44;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.clone-prompt-banner button {
    margin-top: 0.5rem;
}

.personalized-audio-container {
    margin-top: 1rem;
}
