/* _content/DashboardBlazor/Shared/HotelLayout.razor.rz.scp.css */
/* Layout */
.layout[b-anzdu6bcbj] {
    display: flex;
    height: 100vh;
    flex-direction: row;
}

/* Sidebar */
.sidebar[b-anzdu6bcbj] {
    width: 250px;
    background-color: #2c2c2c;
    color: white;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    transition: transform 0.3s ease;
}

    /* Sidebar states */
    .sidebar.show[b-anzdu6bcbj] {
        transform: translateX(0);
    }

    .sidebar.hide[b-anzdu6bcbj] {
        transform: translateX(-100%);
    }

/* Main */
.main[b-anzdu6bcbj] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
}

/* Desktop behavior */
@media (min-width: 768px) {
    .main.with-sidebar[b-anzdu6bcbj] {
        margin-left: 250px;
    }

    .main.full[b-anzdu6bcbj] {
        margin-left: 0;
    }

    .sidebar[b-anzdu6bcbj] {
        transform: translateX(0); /* always visible */
    }
}

/* Mobile behavior */
@media (max-width: 767px) {

    .sidebar[b-anzdu6bcbj] {
        transform: translateX(-100%);
    }

        .sidebar.show[b-anzdu6bcbj] {
            transform: translateX(0);
        }

    .main[b-anzdu6bcbj] {
        margin-left: 0 !important;
    }
}

/* Header */
.header-row[b-anzdu6bcbj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
    position: relative;
    z-index: 1500;
}

/* Buttons */
.toggle-btn[b-anzdu6bcbj],
.logout-btn[b-anzdu6bcbj] {
    padding: 6px 12px;
    background-color: #444;
    color: gold;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* Content */
.content[b-anzdu6bcbj] {
    flex-grow: 1;
    overflow-y: auto;
}

/* Backdrop */
.backdrop[b-anzdu6bcbj] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1800;
    display: none;
}

    .backdrop.show[b-anzdu6bcbj] {
        display: block;
    }
/* _content/DashboardBlazor/Shared/HotelMenu.razor.rz.scp.css */
.navbar-toggler[b-pzs0cc3v0o] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-pzs0cc3v0o] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-pzs0cc3v0o] {
    font-size: 1.1rem;
}

.oi[b-pzs0cc3v0o] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-pzs0cc3v0o] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-pzs0cc3v0o] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-pzs0cc3v0o] {
        padding-bottom: 1rem;
    }

    .nav-item[b-pzs0cc3v0o]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-pzs0cc3v0o]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-pzs0cc3v0o]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-pzs0cc3v0o] {
        display: none;
    }

    .collapse[b-pzs0cc3v0o] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/DashboardBlazor/Shared/LoginLayout.razor.rz.scp.css */
.page[b-lrzihuyus1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-lrzihuyus1] {
    flex: 1;
}

.sidebar[b-lrzihuyus1] {
    background: linear-gradient(to bottom, #000000, #333333);
    /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/
}

.top-row[b-lrzihuyus1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-lrzihuyus1]  a, .top-row .btn-link[b-lrzihuyus1] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-lrzihuyus1] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-lrzihuyus1] {
        display: none;
    }

    .top-row.auth[b-lrzihuyus1] {
        justify-content: space-between;
    }

    .top-row a[b-lrzihuyus1], .top-row .btn-link[b-lrzihuyus1] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-lrzihuyus1] {
        flex-direction: row;
    }

    .sidebar[b-lrzihuyus1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-lrzihuyus1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-lrzihuyus1], article[b-lrzihuyus1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/DashboardBlazor/Shared/MainLayout.razor.rz.scp.css */
/* Layout */
.layout[b-q148unvkpa] {
    display: flex;
    height: 100vh;
    flex-direction: row;
}

/* Sidebar */
.sidebar[b-q148unvkpa] {
    width: 250px;
    background-color: #2c2c2c;
    color: white;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    transition: transform 0.3s ease;
}

    /* Sidebar states */
    .sidebar.show[b-q148unvkpa] {
        transform: translateX(0);
    }

    .sidebar.hide[b-q148unvkpa] {
        transform: translateX(-100%);
    }

/* Main */
.main[b-q148unvkpa] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.3s ease;
}

/* Desktop behavior */
@media (min-width: 768px) {
    .main.with-sidebar[b-q148unvkpa] {
        margin-left: 250px;
    }

    .main.full[b-q148unvkpa] {
        margin-left: 0;
    }

    .sidebar[b-q148unvkpa] {
        transform: translateX(0); /* always visible */
    }
}

/* Mobile behavior */
@media (max-width: 767px) {

    .sidebar[b-q148unvkpa] {
        transform: translateX(-100%);
    }

        .sidebar.show[b-q148unvkpa] {
            transform: translateX(0);
        }

    .main[b-q148unvkpa] {
        margin-left: 0 !important;
    }
}

/* Header */
.header-row[b-q148unvkpa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
    position: relative;
    z-index: 1500;
}

/* Buttons */
.toggle-btn[b-q148unvkpa],
.logout-btn[b-q148unvkpa] {
    padding: 6px 12px;
    background-color: #444;
    color: gold;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* Content */
.content[b-q148unvkpa] {
    flex-grow: 1;
    overflow-y: auto;
}

/* Backdrop */
.backdrop[b-q148unvkpa] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1800;
    display: none;
}

    .backdrop.show[b-q148unvkpa] {
        display: block;
    }
/* _content/DashboardBlazor/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-m7isdcaeff] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-m7isdcaeff] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-m7isdcaeff] {
    font-size: 1.1rem;
}

.oi[b-m7isdcaeff] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-m7isdcaeff] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-m7isdcaeff] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-m7isdcaeff] {
        padding-bottom: 1rem;
    }

    .nav-item[b-m7isdcaeff]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-m7isdcaeff]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-m7isdcaeff]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-m7isdcaeff] {
        display: none;
    }

    .collapse[b-m7isdcaeff] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
