﻿/* Container giữ chữ chạy trong phạm vi */
.marquee-container {
    width: 100%; /* Đảm bảo full width */
    overflow: hidden; /* Ngăn chữ chạy ra ngoài */
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

/* Chữ chạy trong phạm vi của container */
.marquee {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: red;
    white-space: nowrap;    
    width: max-content; /* ✅ Giữ nội dung không bị cắt */
    animation: marquee 10s linear infinite;
}

/* Keyframes: Đảm bảo cách lề phải 30px */
@keyframes marquee {
    0% {
        transform: translateX(100%); 
    }

    100% {
        transform: translateX(-100%); 
    }
}
