/* /Components/Dialogs/FileUpload.razor.rz.scp.css */
.custom-drop-zone[b-p92m47bu5m] {
    padding: 0 !important;
    border-style: dashed;
    border-width: 2px !important;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(183, 183, 183, 0.1);
}

    .custom-drop-zone.custom-drop-zone-hover[b-p92m47bu5m] {
        border-style: solid;
    }

    .custom-drop-zone svg[b-p92m47bu5m] {
        width: 42px;
        height: 42px;
    }

    .custom-drop-zone > *:not(#overviewDemoSelectButton)[b-p92m47bu5m] {
        pointer-events: none;
    }

.drop-file-label[b-p92m47bu5m] {
    font-weight: 500;
    font-size: 1rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-s2vv6af6zl] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-s2vv6af6zl] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NewMainLayout.razor.rz.scp.css */
body[b-rj8v2tyxmh] {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.toggler-btn[b-rj8v2tyxmh] {
    background-color: transparent;
    color: black;
    cursor: pointer;
    border: 0;
}

.sidebar-nav-link[b-rj8v2tyxmh] {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
}

#topbar[b-rj8v2tyxmh] {
    height: 60px;
    background-color: #00a018;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: 0.9rem;
}

    #topbar .menu-links[b-rj8v2tyxmh] {
        display: flex;
        gap: 20px;
        font-size: 0.9rem;
        margin-left: 10px;
        border-radius: 10px;
    }

    #topbar .menu-links1[b-rj8v2tyxmh] {
        display: flex;
        gap: 20px;
        font-size: 0.9rem;
        border-radius: 10px;
        margin-left: auto; /* Push links to the right */
        padding: 12px 20px; /* Increased padding for height and width */
        border-radius: 10px; /* Slightly rounded corners */
        transition: background-color 0.3s ease, border-radius 0.3s ease, padding 0.3s ease;
    }

    #topbar .menu-links a[b-rj8v2tyxmh] {
        color: white;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
    }

        #topbar .menu-links a:hover[b-rj8v2tyxmh] {
            /*background-color: darkgreen;*/
            color: black !important;
        }

    #topbar .dropdown-menu[b-rj8v2tyxmh] {
        background-color: #00a018;
        border: none;
    }

    #topbar .dropdown-item[b-rj8v2tyxmh] {
        color: white;
        margin-top:8px;
    }

        #topbar .dropdown-item:hover[b-rj8v2tyxmh] {
            /*background-color: darkgreen;*/
            background-color:transparent;
            color: black !important;
        }

        #topbar .dropdown-item.disabled[b-rj8v2tyxmh] {
            pointer-events: none;
            opacity: 0.5;
        }

#sidebar[b-rj8v2tyxmh] {
    width: 200px;
    background-color: #00a018;
    color: white;
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

    #sidebar.unauthenticated[b-rj8v2tyxmh] {
        transform: translateX(-200px);
    }

    #sidebar .nav-link[b-rj8v2tyxmh] {
        color: white;
        padding: 2px 14px;
        transition: background-color 0.3s ease;
        border-radius: 10px;
    }

        /* Hover effect for sidebar links */
        #sidebar .nav-link:hover[b-rj8v2tyxmh] {
            background-color: darkgreen;
            border-radius:10px;
        }

#main-content[b-rj8v2tyxmh] {
    flex: 1;
    margin-left: 200px; /* Default margin for sidebar */
    padding: 0px;
    background-color: #f8f9fa;
    overflow-y: auto;
    transition: margin-left 0.3s ease;
}

    #main-content.unauthenticated[b-rj8v2tyxmh] {
        margin-left: 0;
    }

/* Hide sidebar on screens smaller than 800px */
@media (max-width: 799.98px) {
    #sidebar[b-rj8v2tyxmh] {
        transform: translateX(-200px);
    }

    #main-content[b-rj8v2tyxmh] {
        margin-left: 0;
    }

    #sidebar.show[b-rj8v2tyxmh] {
        transform: translateX(0);
    }

    #main-content.sidebar-open[b-rj8v2tyxmh] {
        margin-left: 200px;
    }
}

/* Hide sidebar on large screens when toggled */
@media (min-width: 800px) {
    #sidebar.hide-on-large[b-rj8v2tyxmh] {
        transform: translateX(-200px);
    }

    #main-content.sidebar-closed[b-rj8v2tyxmh] {
        margin-left: 0;
    }
}

#blazor-error-ui[b-rj8v2tyxmh] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-rj8v2tyxmh] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/Topbar.razor.rz.scp.css */
.toggler-btn[b-x2uqyfyslq] {
    background-color: transparent;
    color:black;
    cursor: pointer;
    border: 0;
}



.navbar[b-x2uqyfyslq] {
    padding: 1rem 0 1rem 0;
    background-color: #00a018;
    color: black;
    font-size: 0.9rem;
   /* font-weight: bold;*/
}

.dropdown-item.disabled[b-x2uqyfyslq] {
    pointer-events: none;
    opacity: 0.5;
}

.nav-item[b-x2uqyfyslq] {
}

    .nav-item[b-x2uqyfyslq]  .nav-link {
        color: white;
        background: rgba(255,255,255,0);
        border: none;
        border-radius: 4px;
        height: 1.5rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

    .nav-item[b-x2uqyfyslq]  a.active {
        background-color: rgba(255,255,255,0);
        color: var(--lucky-activecolor) !important;
    }

    .nav-item[b-x2uqyfyslq]  .nav-link:hover {
        background-color: rgba(255,255,255,0);
        color: var(--lucky-hovercolor) !important;
    }

.dropdown-menu[b-x2uqyfyslq] {
    --bs-dropdown-bg: #0b6212;
    color: white;
}

.dropdown-item[b-x2uqyfyslq] {
    color: white;
}
    .dropdown-item:hover[b-x2uqyfyslq] {
        background-color: #257a21;
    }


@media only screen and (max-width: 600px) {
    .topbar-logo[b-x2uqyfyslq] {
        display: none;
        visibility: hidden;
    }
}

@media only screen and (min-width: 601px) {
    .topbar-logo[b-x2uqyfyslq] {
        display: block;
        visibility: visible;
    }
}


/* /Components/Pages/Blog/BlogPostEdit.razor.rz.scp.css */
.tox .tox-sidebar-wrap[b-09t7s9ke8b]{
    max-height:100px;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/*.backgroundImage {
    height:100%;
    background-image: url('images/bowling-sport-needs-lil7ae8uwrql56331.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/
.vh[b-gh2k2wf4gt] {
    height: calc(100vh - 60px);
}

.mainbody[b-gh2k2wf4gt]{
    padding:0px !important;
}

svg[b-gh2k2wf4gt] {
    display: block;
}
/* /Components/Pages/HVGBowlingAdm/Entries.razor.rz.scp.css */
/*.HideBorder {
}

.vh {
    height: calc(100vh - 60px);
}

.SetTopBorder{
    border-top:1px solid black;
}*/
/* /Components/Pages/HVG/Resultlist.razor.rz.scp.css */
.resulttable[b-4tu11bzbun] {
    font-size: 0.75rem;
}

@media only screen and (max-width: 766px) {
    .resulttable[b-4tu11bzbun] {
        font-size: 1.8vw;
    }
}

/* /Components/Pages/Lucky.razor.rz.scp.css */
.table > :not(caption) > * > *[b-5ia47jnkdi] {
    padding: 0.02rem;
}

/** {
    outline: 1px solid #f00 !important;
}*/

.vh[b-5ia47jnkdi] {
    height: calc(100vh - 60px);
}
/*.backgroundImage {
    height: 100%;
    background-image: url('images/bowling-sport-needs-lil7ae8uwrql56331.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/
/* /Components/Pages/LuckySenior.razor.rz.scp.css */
.table > :not(caption) > * > *[b-2xc2e3qurm] {
    padding: 0.02rem;
}

.vh[b-2xc2e3qurm] {
    height: calc(100vh - 60px);
}

/*.backgroundImage {
    height: 100%;
    background-image: url('images/bowling-sport-needs-lil7ae8uwrql56331.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/
/* /Components/ResultList/ResultListDisplay.razor.rz.scp.css */
.resulttable[b-gvfjul88bx] {
    font-size: 0.75rem;
}

@media only screen and (max-width: 766px) {
    .resulttable[b-gvfjul88bx] {
        font-size: 1.8vw;
    }
}

table.loading tbody[b-gvfjul88bx] {
    position: relative;
}

    table.loading tbody[b-gvfjul88bx]:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: transparent;
        background-image: url('../images/spinner.gif');
        background-position: center;
        background-repeat: no-repeat;
        background-size: 50px 50px;
        content: "";
    }
