/* public/css/voice-reader.css */

.articleMain__voice-reader {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.voice-reader__container {
    color: #fff;
}

.voice-reader__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.voice-reader__title {
    font-size: 18px;
    font-weight: 600;
}

.voice-reader__controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.btn--voice {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn--voice:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn--voice:active {
    transform: translateY(0);
}

.btn--voice.reading-active {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.voice-reader__option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.voice-reader__option label {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.voice-reader__select {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-reader__select:hover {
    background: rgba(255, 255, 255, 0.3);
}

.voice-reader__select option {
    background: #667eea;
    color: #fff;
}

.voice-reader__info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .articleMain__voice-reader {
        padding: 15px;
    }

    .voice-reader__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .btn--voice {
        width: 100%;
        justify-content: center;
    }

    .voice-reader__option {
        width: 100%;
        justify-content: space-between;
    }

    .voice-reader__select {
        flex: 1;
        max-width: 150px;
    }
}

/* Dark Mode Uyumluluğu (varsa) */
@media (prefers-color-scheme: dark) {
    .articleMain__voice-reader {
        background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    }
}