/* CSS cơ bản */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system-font, Helvetica Neue, PingFang SC, STHeitiSC-Light, Arial, sans-serif;
    color: #666;
    background-color: #e4e5e5;
}

#root {
    display: none; /* Ẩn ban đầu, hiển thị sau khi tải */
}

.app-loading-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e4e5e5;
    color: #666;
    z-index: 99999999;
    font-size: 16px;
}

/* Media Query cho điện thoại (dưới 768px) */
@media only screen and (max-width: 768px) {
    .app-loading-custom {
        font-size: 14px; /* Giảm kích thước chữ */
    }
    img {
        max-width: 100%;
        height: auto;
    }
    /* Điều chỉnh Swiper nếu có */
    .swiper {
        width: 100%;
        height: auto;
    }
    .swiper-slide img {
        max-width: 100%;
        height: auto;
    }
    /* Nếu có container hoặc menu */
    .container {
        width: 100%;
        padding: 0 10px;
    }
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    nav ul li {
        margin: 5px 0;
    }
}

/* Hiển thị nội dung sau khi tải (nếu dùng JS) */
.loaded #root {
    display: block;
}
.loaded .app-loading-custom {
    display: none;
}
