/* /Layout/MainLayout.razor.rz.scp.css */
/* Styles specific to MainLayout that were in the global <style> tag */
/* .app-container, .main-content etc. are already in app.css / output.css for global use */
/* This file is for styles scoped to MainLayout only */
/* Language Selector Popup Styles */
/* /Shared/BottomNav.razor.rz.scp.css */
/* Styles from original .bottom-nav, .nav-item, .nav-item.active, .nav-item-scan */
/* Blazor's NavLink adds 'active' class automatically */
.nav-item.active svg[b-izzffhaed2],
.nav-item.active span[b-izzffhaed2] {
    color: #22c55e; /* green-500 */
    text-align: center; /* Center text in active state */
}

.nav-item-scan[b-izzffhaed2] {
    transform: translateY(-20px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

    .nav-item-scan.active-scan[b-izzffhaed2] { /* Custom active class for scan button */
        background-color: #16a34a; /* green-600 */
    }


span[b-izzffhaed2] {
    display: block;
    text-align: center !important; /* Center text in nav items */
}
/* /Shared/Carousel.razor.rz.scp.css */
.carousel-container[b-hf54yrc6jg] {
    overflow: hidden;
}

.carousel-track[b-hf54yrc6jg] {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide[b-hf54yrc6jg] {
    min-width: 100%;
    box-sizing: border-box;
    position: relative; /* Ensures overlay is positioned relative to the slide */
}

    .carousel-slide img[b-hf54yrc6jg] {
        object-fit: cover;
        height: 200px; /* Consistent height for all slide images */
        width: 100%;
    }

.carousel-dots[b-hf54yrc6jg] {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-dot[b-hf54yrc6jg] {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}

    .carousel-dot.active[b-hf54yrc6jg] {
        background-color: white;
    }
/* /Shared/LanguageSelectorPopup.razor.rz.scp.css */
.language-selector-overlay[b-hwlm2lz33v] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Lớp nền mờ */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050; /* Đảm bảo nó nổi lên trên các thành phần khác */
}

.language-selector-box[b-hwlm2lz33v] {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    width: 90%;
    max-width: 320px;
}

    .language-selector-box h4[b-hwlm2lz33v] {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 1.2rem;
        color: #333;
    }

.language-buttons[b-hwlm2lz33v] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Khoảng cách giữa 2 nút */
}

.lang-btn[b-hwlm2lz33v] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f8f9fa;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Điều chỉnh khoảng cách giữa cờ và chữ */
}


/* Style cho icon lá cờ dạng ảnh */
.flag-icon[b-hwlm2lz33v] {
    width: 28px; /* Chiều rộng của lá cờ */
    height: auto; /* Chiều cao tự động theo tỷ lệ */
    border-radius: 4px; /* Bo góc nhẹ cho đẹp mắt (tùy chọn) */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* Thêm bóng mờ (tùy chọn) */
}

.lang-btn:hover[b-hwlm2lz33v] {
    background-color: #e9ecef;
}

.lang-btn .flag[b-hwlm2lz33v] {
    font-size: 1.5rem;
}
