﻿
body {
    font-family: "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.thin-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Lazy Load Styles */
img[data-lazy-src] {
    filter: blur(10px);
    transition: filter 0.3s ease-in-out;
}

    img[data-lazy-src].loaded {
        filter: blur(0);
    }

.lazy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

    .lazy-image.loading {
        opacity: 0.5;
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
    }

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Effect ตอนกดปุ่มไมค์กำลังฟังเสียง */
.mic-recording {
    color: #ea4335 !important; /* เปลี่ยนเป็นสีแดง Google */
    animation: pulse-mic 1.2s infinite;
}