/*
Theme Name: Mizu Chat
Theme URI: https://mizudigital.vn
Author: Mizu Digital
Description: Giao diện chat AI cho Mizu Digital Agency — chuyển đổi từ mizudigital.vn sang WordPress. Nội dung dịch vụ/giải pháp lấy động từ CPT.
Version: 1.0.0
Requires PHP: 7.4
Text Domain: mizu-chat
*/

/* Thanh cuộn */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }
.dark ::-webkit-scrollbar-thumb { background-color: #475569; }

/* Hiệu ứng gõ chữ của AI */
.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #94a3b8;
    border-radius: 50%;
    margin: 0 2px;
    animation: mizu-bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes mizu-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.message-enter { animation: mizu-slide-up 0.3s ease-out forwards; }
@keyframes mizu-slide-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
