/* /Layout/MainLayout.razor.rz.scp.css */
.main-page[b-jrp2ibhjsy] {
    display: grid;
    grid-template-rows: 3.5rem 1fr;
    height: 100vh;
}

.main-nav[b-jrp2ibhjsy] {
    display: flex;
    padding: 5px;
    background-color: #005904;
    width: 100%;
    font-size: 0.9rem; /* or 16px */
    font-weight: 300;
    letter-spacing: 0.5px;
    color: white;
    box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.08), /* outer bottom shadow */
    inset 0 -2px 4px rgba(0, 0, 0, 0.05);
}

    .main-nav > div[b-jrp2ibhjsy] {
        margin: 2px;
        padding-left: 5px;
        padding-right: 5px;
        display: flex;
        flex-grow: 1;
        align-items: center;
        align-content: center;
    }

        .main-nav > div:first-child[b-jrp2ibhjsy] {
            padding-left: 25px;
            font-family: sans-serif;
            font-weight: 600;
            font-size: 1rem;
        }

        .main-nav > div:last-child[b-jrp2ibhjsy] {
            justify-content: end;
        }

    .main-nav ul[b-jrp2ibhjsy] {
        display: flex;
        gap: 40px;
        padding: 0;
        margin: 0;
    }

    .main-nav li[b-jrp2ibhjsy] {
        display: none;
        list-style-type: none;
    }

.main-content[b-jrp2ibhjsy] {
    display: grid;
    grid-template-rows: 1fr;
    width: 100%;
}

.main-sidebar[b-jrp2ibhjsy] {
    display: flex;
    justify-content: center;
    background: linear-gradient( 26deg, rgba(0, 89, 4, 1) 0%, rgba(66, 66, 6, 1) 40%, rgba(69, 135, 7, 1) 100% );
    width: 100%;
    overflow-x: hidden;
    z-index: 10;
}

.sub-main-menu[b-jrp2ibhjsy] {
    display: flex;
    position: absolute;
    top: 0;
    padding: 10px;
    color: white;
}

    .sub-main-menu ul[b-jrp2ibhjsy] {
        display: flex;
        gap: 40px;
    }

    .sub-main-menu li[b-jrp2ibhjsy] {
        list-style-type: none;
    }

.main-nav-icon[b-jrp2ibhjsy] {
    display: flex;
    appearance: none;
    top: 10px;
    position: absolute;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    right: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

    .main-nav-icon:focus[b-jrp2ibhjsy] {
        border: 2px solid white;
    }

    .main-nav-icon:checked[b-jrp2ibhjsy] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.main-sidebar:has(.main-nav-icon:checked) .sidebar-content[b-jrp2ibhjsy] {
    max-height: 100%;
    transition: max-height 2s ease;
    display: flex;
}

.sidebar-content[b-jrp2ibhjsy] {
    display: none;
    flex-direction: column;
    max-height: 0;
    margin: 0;
    padding: 5px;
    padding-top: 10px;
    gap: 20px;
}

    .sidebar-content li[b-jrp2ibhjsy] {
        list-style-type: none;
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .sidebar-content[b-jrp2ibhjsy]  .navs-link-span {
        color: white;
    }

    .sidebar-content li[b-jrp2ibhjsy]  img {
        fill: white;
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

.nav-item[b-jrp2ibhjsy] {
    border-radius: 5px;
}

    .nav-item .nav-link.active[b-jrp2ibhjsy] {
        background-color: rgba(255, 255, 255, 0.37);
        color: white;
    }

    .nav-item:hover[b-jrp2ibhjsy] {
        background-color: rgba(255, 255, 255, 0.5);
    }

    .nav-item[b-jrp2ibhjsy]  a {
        padding: 5px;
        padding-left: 10px;
        border-radius: 5px;
    }

        .nav-item[b-jrp2ibhjsy]  a.active {
            background-color: rgba(255,255,255,0.37);
            width: 100%;
            color: white;
        }

    .nav-item:hover[b-jrp2ibhjsy]  a:hover {
        background-color: transparent;
    }

.navs-link-span[b-jrp2ibhjsy] {
    text-decoration: none;
}

.main-body[b-jrp2ibhjsy] {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow-y: scroll;
    overflow-x: hidden;
}

.main-sidebar.partial[b-jrp2ibhjsy] {
    display: flex;
}
/* when Large */
@media (min-width: 641px) {
    .main-page[b-jrp2ibhjsy] {
        display: grid;
        grid-template-rows: 3.5rem 1fr;
    }

    .main-nav[b-jrp2ibhjsy] {
        display: flex;
        justify-content: space-between;
    }

        .main-nav li[b-jrp2ibhjsy] {
            display: flex;
        }

    .main-nav-icon[b-jrp2ibhjsy] {
        display: none;
    }

    .main-content[b-jrp2ibhjsy] {
        grid-template-columns: auto 1fr;
        grid-template-rows: none;
        transition: ease-in-out 1s;
    }

    .sub-main-menu[b-jrp2ibhjsy] {
        display: none;
    }

    .main-sidebar[b-jrp2ibhjsy] {
        width: 70px;
        transition: ease-in-out 1s;
    }

        .main-sidebar.partial[b-jrp2ibhjsy] {
            display: none;
        }

    .main-content:has(.main-sidebar:hover) .main-sidebar[b-jrp2ibhjsy] {
        width: 240px;
        transition: ease-in-out 1s;
    }

    .main-sidebar:hover[b-jrp2ibhjsy] {
        justify-content: start;
        max-width: 250px;
        transition: ease-in-out 2s;
    }

    .sidebar-content[b-jrp2ibhjsy] {
        display: flex;
        max-height: auto;
        justify-content: left;
    }

        .sidebar-content li[b-jrp2ibhjsy] {
            justify-content: left;
        }

        .sidebar-content[b-jrp2ibhjsy]  .navs-link-span {
            display: none;
        }

    .main-content:has(.main-sidebar:hover) .sidebar-content[b-jrp2ibhjsy] {
        padding-left: 15px;
    }

    .main-content:has(.main-sidebar:hover)[b-jrp2ibhjsy]  .navs-link-span {
        display: flex;
        white-space: nowrap;
    }

    .main-body[b-jrp2ibhjsy] {
        min-width: 50%;
        width: auto;
        grid-column: 2;
    }
}
/* /Pages/AboutUsPage.razor.rz.scp.css */
.aboutus-main[b-bd0prlbpir] {
    display: grid;
    height:100%;
    grid-template-rows: auto 50px; 
}

.aboutus-main > div[b-bd0prlbpir] {
    overflow-y: auto;
}

.section-divider[b-bd0prlbpir] {
    background-color: #158D15; 
    padding:6px;
    padding-top:8px;
    color: white;
    text-align:center;
    border-radius: 0;
    margin: 3rem 0;
}

.banner-success[b-bd0prlbpir] {  
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

footer[b-bd0prlbpir] {
    display: flex;
    justify-content:end;
    font-size:0.8rem;
    padding: 1rem 1rem;
    text-align: center;
    color: white;
    width: 100%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15); /* top shadow */
}

section[b-bd0prlbpir]{
    margin: 0 5px 0 5px;
}
/* /Pages/Home.razor.rz.scp.css */
.twist-main[b-r2jx2hsumz] {
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero[b-r2jx2hsumz] {
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.feature-icon[b-r2jx2hsumz] {
    font-size: 40px;
    color: #04b30d;
}


nav[b-r2jx2hsumz] {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
/* /Pages/LeaveCalculationPage.razor.rz.scp.css */
.custom-modal-overlay[b-28cq8i8unp] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-container[b-28cq8i8unp] {
    width: 90vw;
    height: 95vh;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
    overflow: auto;   
}

.custom-modal-header[b-28cq8i8unp]{
    display:flex;
    justify-content:space-between;    
    background-color:#007000;
    color:whitesmoke;
    padding:5px;
    padding-inline-start:10px;
}
.custom-modal-header ~ div[b-28cq8i8unp]{
    padding:1rem;
    overflow-x:auto;
}
.custom-modal-content[b-28cq8i8unp] {
    max-height: 100%;
    overflow-y: auto;
}

#period-table[b-28cq8i8unp]{
    user-select:none;
}

#leave-btn-container[b-28cq8i8unp] {  
    position:relative; 
    overflow:hidden;
    padding-right:20px;
}

#leave-btn[b-28cq8i8unp] {
    display: flex;
    position: absolute;
    top: 30%;
    right: 3%;
    transform: rotate(90deg);
}

    #leave-btn i[b-28cq8i8unp] {
        font-size: 1rem;
        color: green;       
    }

    #leave-btn.active i[b-28cq8i8unp] {
        color: blue;       
        animation: pop-b-28cq8i8unp 0.3s ease-in-out;
    }


tr[b-28cq8i8unp] {
    cursor: move;   
}

.sortable-chosen[b-28cq8i8unp] {
    background-color: #e0e0e0;
}

@keyframes pop-b-28cq8i8unp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}
/* /Pages/LeaveComponents/LeaveListComponent.razor.rz.scp.css */
.leavelist-container[b-8hwtx05aw4] {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    padding:10px;
}

.leave-item[b-8hwtx05aw4] {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

    .leave-item:hover[b-8hwtx05aw4] {
        border-color: none;
        box-shadow: 0 0 0 0.1rem rgba(52, 172, 34, 0.53);
    }

    .leave-item.active[b-8hwtx05aw4] {
        border-color: #005904;
        background-color: #ecfae9;
    }

.leave-heading[b-8hwtx05aw4] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.leave-title[b-8hwtx05aw4] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.leave-subtitle[b-8hwtx05aw4] {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: #6c757d;
    margin-top: 0.25rem;
}

.leave-date[b-8hwtx05aw4] {
    font-size: 0.875rem;
    color: #495057;
}

.leave-description[b-8hwtx05aw4] {
    font-size: 0.9rem;
    color: #343a40;
    margin-top: 0.5rem;
}

.edit-btn-container[b-8hwtx05aw4] {
    display: none;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.edit-btn-container.active[b-8hwtx05aw4]{
    display: flex;
}
/* /Pages/LeaveComponents/LeavePeriodModal.razor.rz.scp.css */
.leave-container[b-ibi760c2dl]{
    display:grid;
    grid-template-rows:1fr auto;    
}
/* /Pages/LeaveComponents/SummaryModal.razor.rz.scp.css */
.C-modal[b-deb16oixcf] {
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem; /* For spacing when screen is small */
}

.modal-content-wrapper[b-deb16oixcf] {
    max-height: 98vh; /* Limit to viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
    min-width: 80%;
    display: flex;
    justify-content: center;
}


.auditpro-hide[b-deb16oixcf] {
    display: none;
}

.auditpro-show[b-deb16oixcf] {
    display: flex;
}
/* /Pages/LeaveComponents/VacationSummary.razor.rz.scp.css */
.earned[b-2qynonwjp5], .dayrelease[b-2qynonwjp5] {
    color: #007900;
}

.taken[b-2qynonwjp5] {
    color: #e50000;
}


.btn-white[b-2qynonwjp5] {
    background-color: transparent;
    color: black;
    border: none;
}

    .btn-white:hover[b-2qynonwjp5] {
        background-color: #f8f9fa;
    }
/* /Pages/LoginPage.razor.rz.scp.css */
*[b-06wwul9i2m] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

.auth-body[b-06wwul9i2m] {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient( 26deg, rgba(0, 89, 4, 1) 0%, rgba(66, 66, 6, 1) 40%, rgba(69, 135, 7, 1) 100% );
}

 .auth-body.verification[b-06wwul9i2m]{

 }

    .section-indicator[b-06wwul9i2m] {
        display: flex;
        position: absolute;
        flex-direction: column;
        gap: 20px;       
    }

    .section-indicator div[b-06wwul9i2m] {
        width: 20px;
        height: 20px;
        border: 3px solid #20c997;
        background-color: #ffff00;
        border-radius: 50%;
    }


        .section-indicator div.current[b-06wwul9i2m] {
            background-color: white;
            border: 2px solid #20c997;
            border-radius: 50%;
        }

.sign-up-section.current[b-06wwul9i2m]{
    display:initial;
  
}

.sign-up-section[b-06wwul9i2m] {
    display:none;

}

.container[b-06wwul9i2m] {
    display: flex;
    position: relative;   
    height: 85%;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

#toggle[b-06wwul9i2m] {
    display: none;
}

.form-panel[b-06wwul9i2m],
.overlay-panel[b-06wwul9i2m] {
    position: absolute;  
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.form-panel[b-06wwul9i2m] {
    justify-content:space-evenly;
    z-index: 2;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    opacity: 1;
}

.form-panel-btn[b-06wwul9i2m]{
    display:flex;
    width:80%;
}

.overlay-panel[b-06wwul9i2m] {
    z-index: 4;
    background: linear-gradient(135deg, #006600, #b8b80d);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.container .form-panel.sign-in[b-06wwul9i2m] {
    
}


.container .form-panel.sign-up[b-06wwul9i2m] {   
    opacity: 0;
    pointer-events: none;
}

.container .overlay-panel[b-06wwul9i2m] {
  
}

#toggle:checked ~ .container .form-panel.sign-up[b-06wwul9i2m] {  
    opacity: 1;
    pointer-events: all; 
}

#toggle:checked ~ .container .form-panel.sign-in[b-06wwul9i2m] {  
    opacity: 0;
    pointer-events: none;
}

#toggle:checked ~ .container .overlay-panel[b-06wwul9i2m] {
 
}

#toggle:checked ~ .container .overlay-panel .overlay-content:first-child[b-06wwul9i2m]{
    display:none;
}

    #toggle:checked ~ .container .overlay-panel .overlay-content:last-child[b-06wwul9i2m] {
       display:initial;
    }

.container .overlay-panel .overlay-content:last-child[b-06wwul9i2m] {
    display:none;
}

h2[b-06wwul9i2m] {
    margin-bottom: 20px;
}

input[b-06wwul9i2m] {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button[b-06wwul9i2m] {
    padding: 12px;
    border: none;   
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.container button[b-06wwul9i2m] {
   
    background: #20c997;
  
}

    button.current[b-06wwul9i2m] {
        background: #131313;
    }

    .toggle-btn[b-06wwul9i2m] {
        margin-top: 20px;
        background: none;
        border: 2px solid white;
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: bold;
    }

@media (min-width: 770px) {
    .container[b-06wwul9i2m] {        
        width: 900px;
    }
   
    .section-indicator[b-06wwul9i2m] {     
        top: 30%;
        left: 5%;
    }
        .form-panel[b-06wwul9i2m], .overlay-panel[b-06wwul9i2m] {       
        width: 50%;
        height: 100%;
        top: 0;       
    }

    .container .form-panel.sign-in[b-06wwul9i2m] {
        right: 0;
        transform: translateX(0%);
    }

    .container .form-panel.sign-up[b-06wwul9i2m] {
        left: 0;
        transform: translateX(100%);       
    }

    .container .overlay-panel[b-06wwul9i2m] {
        right: 0;
        transform: translateX(-100%);
    }


    #toggle:checked ~ .container .form-panel.sign-in[b-06wwul9i2m] {
        transform: translateX(-100%);
    }

    #toggle:checked ~ .container .form-panel.sign-up[b-06wwul9i2m] {
        transform: translateX(0%);
    }

    #toggle:checked ~ .container .overlay-panel[b-06wwul9i2m] {
        transform: translateX(0%);
    }
}


@media (max-width: 769px) {
    .container[b-06wwul9i2m] {    
        max-width: 400px;
      
    }
    .form-panel-btn[b-06wwul9i2m] {
        display: flex;     
        position: relative;
        left:-1%;
       bottom:0;
       width:100%;      
        z-index:30;
    }
    .toggle-btn[b-06wwul9i2m] {
        margin-top: 5px;
    }
        .section-indicator[b-06wwul9i2m] {
        top: 30px;
        left: 5%;
    }
        .form-panel[b-06wwul9i2m], .overlay-panel[b-06wwul9i2m] {           
        width: 100%;
           
    }

    .overlay-panel[b-06wwul9i2m] {
        top: 0;
        height: 30%;
    }
    .overlay-panel p[b-06wwul9i2m]{
        display:none;
    }
    .form-panel[b-06wwul9i2m] {
        padding-top:10px;
        padding-bottom:20px;
        overflow-y:scroll;
        position:absolute;
        bottom:0;
       align-self:center;
       height:70%;       
    }
}
/* /Pages/SalaryPage.razor.rz.scp.css */
.card-body.grid-layout[b-dtxrdcfr5v] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 1000px) {
    .card-body.grid-layout[b-dtxrdcfr5v] {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
}

.grid-column[b-dtxrdcfr5v] {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.border-gradient[b-dtxrdcfr5v] {
    border-style: solid;
    border-width: 0;
    border-right-width: 2px;
    border-image: linear-gradient(to bottom, transparent, #0d6efd, transparent) 1;
}

@media (max-width: 1000px) {
    .border-gradient[b-dtxrdcfr5v] {
        border-right-width: 0;
        border-bottom-width: 2px;
        border-image: linear-gradient(to right, transparent, #0d6efd, transparent) 1;
    }
}

.mt-auto[b-dtxrdcfr5v] {
    margin-top: auto;
}

/* /Pages/SharedComponents/LoadingScreen.razor.rz.scp.css */
.loading-overlay[b-aoadrcgito] {
    display: none;
    position: fixed;
    height:calc(100vh - 3.5rem);
    width: 100%;
    bottom: 0;  
    justify-content: center;
    align-items: center;
    background-color: rgba(59, 66, 61, 0.20);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1050;
    transition: display 0.3s ease-in-out;
}

/* Pulsing loader with 3 dots */

.loader-wrapper[b-aoadrcgito] {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: display 0.3s ease-in-out;
}


.loader[b-aoadrcgito] {
    display: none;
    gap: 1rem;   
}

    .loader span[b-aoadrcgito] {
        width: 0.9rem;
        height: 0.9rem;
        border-radius: 50%;
        background-color: #316631;
        animation: pulse-b-aoadrcgito 1.5s infinite ease-in-out;
        opacity: 0.3;
    }

        .loader span:nth-child(1)[b-aoadrcgito] {
            animation-delay: 0s;
        }

        .loader span:nth-child(2)[b-aoadrcgito] {
             width: 1.2rem;
            height: 1.2rem;
            animation-delay: 0.3s;
        }

        .loader span:nth-child(3)[b-aoadrcgito] {
            width: 1.2rem;
            height: 1.2rem;
            animation-delay: 0.6s;
        }

.loading-text[b-aoadrcgito] {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

.loader-show[b-aoadrcgito] {
    display: flex;
    transition: display 3s ease-in-out;
}

@keyframes pulse-b-aoadrcgito {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}
/* /Pages/SharedComponents/PageNumBar.razor.rz.scp.css */

.shop-bar-container[b-g1naimqobu] {
    display: grid;
    font-weight: 600;
   margin-left:10px;
   margin-right:10px;
    grid-template-columns: 1fr auto;
}

.shop-page-bar[b-g1naimqobu] {
    display: flex;
    overflow: hidden;    
    background-color: var(--shop-color-teritary);
    border-radius: 5px 0 0 5px;    
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

    .shop-page-bar > div[b-g1naimqobu] {
        display: flex;
        position: relative;       
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 30px;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        transition: 1s;
    }
        .shop-page-bar > div :hover[b-g1naimqobu] {
            background-color: var(--shop-color-secondary);
            color: white;
        }

#page-bar[b-g1naimqobu] {
    border-radius: 3px;
    right: 0;
    background-color: var(--shop-color-primary);
    color: #1BA121;
    font-weight: bold;
    box-shadow: inset 0 0 5px #1BA121;
}



#page-number-input[b-g1naimqobu] {
    background-color: var(--shop-color-teritary);
    display: grid;
    grid-template-columns: auto auto;
    border-radius: 0 5px 5px 0;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

    #page-number-input div[b-g1naimqobu] {
        display: flex;
        align-content: center;
        justify-content: center;
        height: 30px;
        padding-left: 10px;
        padding-right: 10px;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        flex-shrink: 1;
    }

    #page-number-input input[b-g1naimqobu] {
        margin: auto;
        width:60px;              
        font-weight: 600;
        text-align: center;
        height: 30px;
        border: none;
    }

#page-number-input label[b-g1naimqobu]{
    margin:auto;
}
/* /Pages/SharedComponents/ToastNotification.razor.rz.scp.css */
:root[b-gp8s8igkc0] {
    --animate-notify: fade 5s ease-in-out 0.5s forwards;
    --animate-text: fadetext 3.5s;
}

.twist-notify[b-gp8s8igkc0] {
    display: flex;
    position: fixed;
    visibility: hidden;
    flex-wrap: wrap;
    float: right;
    justify-content: center;
    align-items: center;
    min-height: 30px;
    min-width: 150px;
    transform-origin: right;
    top: 3.6rem;
    right: 3%;
    border-radius: 5px;
    padding: 5px;
    color: white;
    font-weight: 500;
    transition: 2s;
    animation: notify-hidden-b-gp8s8igkc0 5s linear;
    z-index: 9999;  
}

    .twist-notify div[b-gp8s8igkc0] {
        background-color: currentColor;
    }

    .twist-notify span[b-gp8s8igkc0] {
        opacity: 1;
        transition: opacity 3s;
      
    }

.success[b-gp8s8igkc0] {
    display: flex;
    visibility: visible;
    background-color: rgb(43, 199, 68);
    animation: var(--animate-notify);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .success span[b-gp8s8igkc0] {
        animation: var(--animate-text);
    }

.failure[b-gp8s8igkc0] {
    display: flex;
    visibility: visible;
    background-color: rgba(253, 31, 29, 0.78);
    animation: var(--animate-notify);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .failure span[b-gp8s8igkc0] {
        animation: var(--animate-text);
    }

.info[b-gp8s8igkc0] {
    display: flex;
    visibility: visible;
    background-color: rgba(119, 197, 253, 0.97);
    animation: var(--animate-notify);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .info span[b-gp8s8igkc0] {
        animation: var(--animate-text);
    }

@keyframes fade-b-gp8s8igkc0 {
    0% {
        display: flex;
        width: 0;
        background-color: transparent;
        box-shadow: none;
        opacity: 0;
    }

    20% {
        width: 120px;
        opacity: 1;
    }

    30%, 60% {
        width: auto;
        opacity: 1; /* stays fully visible */
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadetext-b-gp8s8igkc0 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }
}

@keyframes notify-hidden-b-gp8s8igkc0 {
    0% {
        display: flex;
        opacity: 1;
    }

    25% {
        opacity: 1;
        border-radius: 3px;
    }

    60% {
        opacity: 1;
    }



    90% {
        opacity: 0.5;
    }

    100% {
        right: 10%;
        width: 0;
        min-width: 0;
        display: none;
        opacity: 0;
        border-radius: 0px;
    }
}
/* /Pages/SharedComponents/TwistDateInput.razor.rz.scp.css */
#id-calender-img[b-6q5ryquvv3]{

}

#date-model-input[b-6q5ryquvv3]{
    display:grid;
    grid-template-columns:1fr 50px;
}  

    #date-model-input input[b-6q5ryquvv3]::-webkit-calendar-picker-indicator {
        display: none;
        -webkit-appearance: none;
    }

    #date-model-input input:first-child[b-6q5ryquvv3]{
        min-width:105px;
        border-start-end-radius:0;
        border-end-end-radius:0;
    }
    #date-model-input input:first-child:focus[b-6q5ryquvv3] {
       z-index:10;
    }

    #date-model-input input:last-child[b-6q5ryquvv3] {
        width: 50px;
        background-color: #3399FF;
        background-image: url(calender1.svg);
        background-size: 30px 30px; 
        background-repeat: no-repeat; 
        background-position: center;
        border-end-start-radius: 0;
        border-start-start-radius: 0;
        color: transparent;        
    }

        #date-model-input input:last-child[b-6q5ryquvv3]::-webkit-datetime-edit {
            display: none;
        }

        #date-model-input input:last-child[b-6q5ryquvv3]::-webkit-calendar-picker-indicator {
            opacity: 1;
            cursor: pointer;
        }

        #date-model-input:has(input:first-child:focus) input:last-child[b-6q5ryquvv3] {
            pointer-events: none;
            opacity: 0.5;
        }
/* /Pages/SharedComponents/TwistInputSelector.razor.rz.scp.css */
.employee-select-container[b-e3g3luslp2] {
    position:relative;
    max-width: 600px;
    margin: auto;
}

.dropdown-wrapper[b-e3g3luslp2] {
    flex-wrap: nowrap;
}

.emp-dropdown-container[b-e3g3luslp2] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: disappear-drop 1s;
}

.emp-dropdown-list[b-e3g3luslp2]{
    max-height:150px;
    overflow-y:scroll;
}

.selector-drop-button[b-e3g3luslp2] {
    display: flex;
    justify-content: center;
}

.employee-tab-content:has(input:focus) .emp-dropdown-container[b-e3g3luslp2] {
    display: block;
}

.employee-tab-content:has(.emp-dropdown-container.dropdown-show:hover) .emp-dropdown-container[b-e3g3luslp2] {
    display: block;
}

.dropdown-item[b-e3g3luslp2] {
    padding: 0.5rem 1rem;
    cursor: pointer;
}

    .dropdown-item:hover[b-e3g3luslp2] {
        background-color: #f1f1f1;
    }


    .dropdown-show[b-e3g3luslp2]{
       
    }
/* /Pages/SharedComponents/TwistModal.razor.rz.scp.css */
.C-modal[b-b1u4catrc5] {
    z-index: 90;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem; /* For spacing when screen is small */
}


.modal-content-wrapper[b-b1u4catrc5] {
    display: flex;
    max-height: 98vh; /* Limit to viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
    width: 100%;   
    justify-content: center;
}


.auditpro-hide[b-b1u4catrc5] {
    display: none;
}

.auditpro-show[b-b1u4catrc5] {
    display: flex;
}
/* /Pages/SharedComponents/TwistNumberInput.razor.rz.scp.css */
.audit-earnings-container[b-vlic3e9o71] {
   display:flex;
   flex-wrap:wrap;
   align-content:center;
   align-items:center;
    gap:5px;
}

label[b-vlic3e9o71]{
    
}

    .audit-earnings-container input[type="number"][b-vlic3e9o71]::-webkit-inner-spin-button,
    .audit-earnings-container input[type="number"][b-vlic3e9o71]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.audit-earnings-container:focus-within label[b-vlic3e9o71] {
    grid-column: 2;    
}
    .audit-earnings-container:has(:hover) input[b-vlic3e9o71]{
       display:flex;
       position:absolute;
       opacity:0;
    }


    .audit-earnings-container input[b-vlic3e9o71] {   
        max-height:40px;
        width: 0px;
        display: none;
        border: none;      
        grid-row:1;
        outline:none;
    }

        .audit-earnings-container input:focus[b-vlic3e9o71] {
            display: flex;
            position: relative;
            top: -5px;
            opacity:1;
            border: 0px thin white;
            border-bottom: 2px solid #198754;
            box-shadow: none;
            width: auto;
            max-width: 150px;
        }

/* /Pages/SharedComponents/TwistToggleSwitch.razor.rz.scp.css */
.switch[b-jzsb0p7fyr] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input[b-jzsb0p7fyr] {
        opacity: 0;
        width: 0;
        height: 0;
           }

.slider[b-jzsb0p7fyr] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
       box-shadow: rgba(230, 230, 230, 0.5) -3px -3px 6px 1px inset, rgb(150, 150, 150) 3px 3px 6px 0px inset, rgb(150, 150, 150) -3px -3px 6px 0px inset, rgba(230, 230, 230, 0.5) 3px 3px 6px 1px inset;

   /* box-shadow: rgba(230, 230, 230, 0.5) -3px -3px 6px 1px inset, rgb(150, 150, 150) 3px 3px 6px 0px inset, rgba(230, 230, 230, 0.5) -3px -3px 6px 1px inset, rgb(150, 150, 150) 3px 3px 6px 0px inset;
*/}

    .slider[b-jzsb0p7fyr]:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;      
        -webkit-transition: .4s;
        transition: .4s;
        box-shadow: rgba(0, 0, 0, 0.17) 23px 0px 25px 0px inset, rgba(0, 0, 0, 0.15) 36px 0px 30px 0px inset, rgba(0, 0, 0, 0.10) 79px 0px 40px 0px inset, rgba(0, 0, 0, 0.06) -2px 0px 1px, rgba(0, 0, 0, 0.09) -4px 0px 2px, rgba(0, 0, 0, 0.09) -8px 0px 4px, rgba(0, 0, 0, 0.09) -16px 0px 8px, rgba(0, 0, 0, 0.09) -32px 0px 16px;
    }

input:checked + .slider[b-jzsb0p7fyr] {
    background: radial-gradient(ellipse at center, #0000FF 0%, #0078FF 40%, #FFFFFF 100%);
}

input:focus + .slider[b-jzsb0p7fyr] {
    /*box-shadow: 0 0 1px #2196F3;*/
    /*    box-shadow: rgb(150, 150, 150) -3px -3px 6px 0px inset, rgba(230, 230, 230, 0.5) 3px 3px 6px 1px inset, rgb(150, 150, 150) -3px -3px 6px 0px inset, rgba(230, 230, 230, 0.5) 3px 3px 6px 1px inset;
*/
 /*   box-shadow: rgba(230, 230, 230, 0.5) -3px -3px 6px 1px inset, rgb(150, 150, 150) 3px 3px 6px 0px inset, rgba(230, 230, 230, 0.5) -3px -3px 6px 1px inset, rgb(150, 150, 150) 3px 3px 6px 0px inset;
*/}

input:checked + .slider[b-jzsb0p7fyr]:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round[b-jzsb0p7fyr] {
    border-radius: 34px;
}

    .slider.round[b-jzsb0p7fyr]:before {
        border-radius: 50%;
    }

