/* _content/SnackHaven.Server/Components/Layout/MainLayout.razor.rz.scp.css */
/* _content/SnackHaven.Server/Components/Pages/Home.razor.rz.scp.css */
.container[b-bvjggu6jcb] {
    width: 95vw; /* Điều chỉnh chiều rộng theo yêu cầu */
    height: 100vh;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-header[b-bvjggu6jcb] {
    text-align: left;
    font-weight: bold;
    margin-bottom: 20px;
}

.grid-container[b-bvjggu6jcb] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.grid-item[b-bvjggu6jcb] {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.icon-placeholder[b-bvjggu6jcb], .flag-placeholder[b-bvjggu6jcb] {
    height: 30px;
    border: 1px dashed #ccc;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text[b-bvjggu6jcb] {
    font-size: 0.9em;
}

.language-selector[b-bvjggu6jcb] {
    border: 1px solid #ddd;
    padding: 10px;
}

.language-item[b-bvjggu6jcb] {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.language-text[b-bvjggu6jcb] {
    margin-left: 10px;
    font-size: 0.9em;
}
/* _content/SnackHaven.Server/Components/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-yraqozjfrn],
.nav-item.active span[b-yraqozjfrn] {
    color: #22c55e; /* green-500 */
    text-align: center; /* Center text in active state */
}

.nav-item-scan[b-yraqozjfrn] {
    transform: translateY(-20px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

    .nav-item-scan.active-scan[b-yraqozjfrn] { /* Custom active class for scan button */
        background-color: #16a34a; /* green-600 */
    }


span[b-yraqozjfrn] {
    display: block;
    text-align: center !important; /* Center text in nav items */
}
/* _content/SnackHaven.Server/Components/Shared/LanguageSelectorPopup.razor.rz.scp.css */
.language-selector-overlay[b-rkm29x6tlz] {
    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-rkm29x6tlz] {
    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-rkm29x6tlz] {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 1.2rem;
        color: #333;
    }

.language-buttons[b-rkm29x6tlz] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Khoảng cách giữa 2 nút */
}

.lang-btn[b-rkm29x6tlz] {
    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-rkm29x6tlz] {
    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-rkm29x6tlz] {
    background-color: #e9ecef;
}

.lang-btn .flag[b-rkm29x6tlz] {
    font-size: 1.5rem;
}
