/* =====================================================
   Voice Examples - เพิ่มต่อท้ายไฟล์ voice-input.css
   ===================================================== */
.voice-examples {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 15px;
    overflow: hidden;
}
.voice-example-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    flex-shrink: 0;
}

.voice-example-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.voice-example-scroll::-webkit-scrollbar {
    display: none;
}

.voice-example-item {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: white;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.voice-example-item:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.05);
}

/* Auto scroll animation */
@keyframes scrollExamples {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.voice-example-scroll.auto-scroll {
    animation: scrollExamples 25s linear infinite;
}

.voice-example-scroll.auto-scroll:hover {
    animation-play-state: paused;
}
