/* _content/AuditProWebApp.Web/Components/Layout/MainLayout.razor.rz.scp.css */


.main-page[b-xpo2g9hz5e] {
    display: grid;
    grid-template-rows: 3.5rem 1fr;
    height: 100vh;
}

.main-nav[b-xpo2g9hz5e] {
    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-xpo2g9hz5e] {
        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-xpo2g9hz5e] {
            padding-left: 25px;
            font-family: sans-serif;
            font-weight: 600;
            font-size: 1rem;
        }

        .main-nav > div:last-child[b-xpo2g9hz5e] {
            justify-content: end;
        }

    .main-nav ul[b-xpo2g9hz5e] {
        display: flex;
        gap: 40px;
        padding: 0;
        margin: 0;
    }

    .main-nav li[b-xpo2g9hz5e] {
        display: none;
        list-style-type: none;
    }

.main-content[b-xpo2g9hz5e] {
    display: grid;
    grid-template-rows: 1fr;
    width: 100%;
}

.main-sidebar[b-xpo2g9hz5e] {
    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-xpo2g9hz5e]{
    display: flex;
    position:absolute;
    top:0;
    padding:10px;
    color:white;
}
    .sub-main-menu ul[b-xpo2g9hz5e] {
        display: flex;
        gap: 40px;
    }

    .sub-main-menu li[b-xpo2g9hz5e] {
        list-style-type: none;
    }

    .main-nav-icon[b-xpo2g9hz5e] {
        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-xpo2g9hz5e] {
        border: 2px solid white;
    }

    .main-nav-icon:checked[b-xpo2g9hz5e] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.main-sidebar:has(.main-nav-icon:checked) .sidebar-content[b-xpo2g9hz5e] {
    max-height: 100%;
    transition: max-height 2s ease;
    display: flex;  
}

.sidebar-content[b-xpo2g9hz5e] {
    display: none;
    flex-direction: column;
    max-height: 0;
    margin: 0;
    padding: 5px;
    padding-top: 10px;
    gap: 20px;
}

    .sidebar-content li[b-xpo2g9hz5e] {
        list-style-type: none;
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .sidebar-content[b-xpo2g9hz5e]  .navs-link-span {
        color: white;
    }

    .sidebar-content li[b-xpo2g9hz5e]  img {
        fill: white;
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

.nav-item[b-xpo2g9hz5e] {
    border-radius: 5px;
}

    .nav-item .nav-link.active[b-xpo2g9hz5e] {
        background-color: rgba(255, 255, 255, 0.37);
        color: white;
    }

    .nav-item:hover[b-xpo2g9hz5e] {
        background-color: rgba(255, 255, 255, 0.5);
    }

    .nav-item[b-xpo2g9hz5e]  a {
        padding: 5px;
        padding-left: 10px;
        border-radius: 5px;
    }

        .nav-item[b-xpo2g9hz5e]  a.active {
            background-color: rgba(255,255,255,0.37);
            width: 100%;
            color: white;
        }

    .nav-item:hover[b-xpo2g9hz5e]  a:hover {
        background-color: transparent;
    }

.navs-link-span[b-xpo2g9hz5e] {
    text-decoration: none;
}

.main-body[b-xpo2g9hz5e] {
    display:flex;
    position:relative;
    flex-direction:column;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow-y: scroll;
    overflow-x: hidden;
}
.main-sidebar.partial[b-xpo2g9hz5e]{
    display:flex;
}
/* when Large */
@media (min-width: 641px) {
    .main-page[b-xpo2g9hz5e] {
        display: grid;
        grid-template-rows: 3.5rem 1fr;
    }

    .main-nav[b-xpo2g9hz5e] {
        display: flex;
        justify-content: space-between;
    }

        .main-nav li[b-xpo2g9hz5e] {
            display: flex;
        }

    .main-nav-icon[b-xpo2g9hz5e] {
        display: none;
    }

    .main-content[b-xpo2g9hz5e] {
        grid-template-columns: auto 1fr;
        grid-template-rows: none;
        transition: ease-in-out 1s;
    }
    .sub-main-menu[b-xpo2g9hz5e]{
        display:none;
    }
    .main-sidebar[b-xpo2g9hz5e] {
        width: 70px;
        transition: ease-in-out 1s;
    }

        .main-sidebar.partial[b-xpo2g9hz5e] {
            display: none;
        }

    .main-content:has(.main-sidebar:hover) .main-sidebar[b-xpo2g9hz5e] {
        width: 240px;
        transition: ease-in-out 1s;
    }

    .main-sidebar:hover[b-xpo2g9hz5e] {
        justify-content: start;
        max-width: 250px;
        transition: ease-in-out 2s;
    }

    .sidebar-content[b-xpo2g9hz5e] {
        display: flex;
        max-height: auto;
        justify-content: left;
    }

        .sidebar-content li[b-xpo2g9hz5e] {
            justify-content: left;
        }

        .sidebar-content[b-xpo2g9hz5e]  .navs-link-span {
            display: none;
        }

    .main-content:has(.main-sidebar:hover) .sidebar-content[b-xpo2g9hz5e] {
        padding-left: 15px;
    }

    .main-content:has(.main-sidebar:hover)[b-xpo2g9hz5e]  .navs-link-span {
        display: flex;
        white-space: nowrap;
    }

    .main-body[b-xpo2g9hz5e] {
        min-width: 50%;
        width: auto;
        grid-column: 2;
    }
}
/* _content/AuditProWebApp.Web/Components/LeaveComponents/LeavePeriodModal.razor.rz.scp.css */
.leave-container[b-m3rcxx6m6y]{
    display:grid;
    grid-template-rows:1fr auto;    
}
/* _content/AuditProWebApp.Web/Components/Pages/AboutUsPage.razor.rz.scp.css */
.aboutus-main[b-j5ayyiows3] {
    display: grid;
    height:100%;
    grid-template-rows: auto 50px; 
}

.aboutus-main > div[b-j5ayyiows3] {
    overflow-y: auto;
}

.section-divider[b-j5ayyiows3] {
    background-color: #158D15; 
    padding:6px;
    padding-top:8px;
    color: white;
    text-align:center;
    border-radius: 0;
    margin: 3rem 0;
}

.banner-success[b-j5ayyiows3] {  
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

footer[b-j5ayyiows3] {
    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-j5ayyiows3]{
    margin: 0 5px 0 5px;
}
/* _content/AuditProWebApp.Web/Components/Pages/Home.razor.rz.scp.css */
.twist-main[b-1u12azk08g] {
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero[b-1u12azk08g] {
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.feature-icon[b-1u12azk08g] {
    font-size: 40px;
    color: #04b30d;
}


nav[b-1u12azk08g] {
    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;
}
/* _content/AuditProWebApp.Web/Components/Pages/LeaveCalculationPage.razor.rz.scp.css */
.custom-modal-overlay[b-6n8794itqt] {
    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-6n8794itqt] {
    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-6n8794itqt]{
    display:flex;
    justify-content:space-between;    
    background-color:#007000;
    color:whitesmoke;
    padding:5px;
    padding-inline-start:10px;
}
.custom-modal-header ~ div[b-6n8794itqt]{
    padding:1rem;
    overflow-x:auto;
}
.custom-modal-content[b-6n8794itqt] {
    max-height: 100%;
    overflow-y: auto;
}
/* _content/AuditProWebApp.Web/Components/Pages/LoginPage.razor.rz.scp.css */
*[b-0yxkbn6jlj] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

.auth-body[b-0yxkbn6jlj] {
    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-0yxkbn6jlj]{

 }

    .section-indicator[b-0yxkbn6jlj] {
        display: flex;
        position: absolute;
        flex-direction: column;
        gap: 20px;
        top: 30%;
        left: 5%;
    }

    .section-indicator div[b-0yxkbn6jlj] {
        width: 20px;
        height: 20px;
        border: 3px solid #20c997;
        background-color: #ffff00;
        border-radius: 50%;
    }


        .section-indicator div.current[b-0yxkbn6jlj] {
            background-color: white;
            border: 2px solid #20c997;
            border-radius: 50%;
        }

.sign-up-section.current[b-0yxkbn6jlj]{
    display:initial;
  
}

.sign-up-section[b-0yxkbn6jlj] {
    display:none;

}



.container[b-0yxkbn6jlj] {
    display: flex;
    position: relative;
    width: 900px;
    height: 85%;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

#toggle[b-0yxkbn6jlj] {
    display: none;
}

.form-panel[b-0yxkbn6jlj],
.overlay-panel[b-0yxkbn6jlj] {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.form-panel[b-0yxkbn6jlj] {
    justify-content:space-evenly;
    z-index: 2;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    opacity: 1;
}

.overlay-panel[b-0yxkbn6jlj] {
    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-0yxkbn6jlj] {
    right: 0;
    transform: translateX(0%);
}


.container .form-panel.sign-up[b-0yxkbn6jlj] {
    left: 0;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.container .overlay-panel[b-0yxkbn6jlj] {
    right: 0;
    transform: translateX(-100%);
}

#toggle:checked ~ .container .form-panel.sign-up[b-0yxkbn6jlj] {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: all;
    left: 0;
}

#toggle:checked ~ .container .form-panel.sign-in[b-0yxkbn6jlj] {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

#toggle:checked ~ .container .overlay-panel[b-0yxkbn6jlj] {
    transform: translateX(0%);
}

#toggle:checked ~ .container .overlay-panel .overlay-content:first-child[b-0yxkbn6jlj]{
    display:none;
}

    #toggle:checked ~ .container .overlay-panel .overlay-content:last-child[b-0yxkbn6jlj] {
       display:initial;
    }

.container .overlay-panel .overlay-content:last-child[b-0yxkbn6jlj] {
    display:none;
}

h2[b-0yxkbn6jlj] {
    margin-bottom: 20px;
}

input[b-0yxkbn6jlj] {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button[b-0yxkbn6jlj] {
    padding: 12px;
    border: none;   
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.container button[b-0yxkbn6jlj] {
   
    background: #20c997;
  
}

    button.current[b-0yxkbn6jlj] {
        background: #131313;
    }

    .toggle-btn[b-0yxkbn6jlj] {
        margin-top: 20px;
        background: none;
        border: 2px solid white;
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: bold;
    }

@media (max-width: 540px) 
{
   

}
/* _content/AuditProWebApp.Web/Components/Pages/SalaryPage.razor.rz.scp.css */
.card-body.grid-layout[b-xclweysrgk] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 1000px) {
    .card-body.grid-layout[b-xclweysrgk] {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
}

.grid-column[b-xclweysrgk] {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.border-gradient[b-xclweysrgk] {
    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-xclweysrgk] {
        border-right-width: 0;
        border-bottom-width: 2px;
        border-image: linear-gradient(to right, transparent, #0d6efd, transparent) 1;
    }
}

.mt-auto[b-xclweysrgk] {
    margin-top: auto;
}

/* _content/AuditProWebApp.Web/Components/SharedComponents/LoadingScreen.razor.rz.scp.css */
.loading-overlay[b-l7bboj9ukp] {
    height: 100%;
    width: 100%;
    position: fixed;
    bottom:0;
    inset: 0;
    display: flex;
    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-l7bboj9ukp] {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: display 0.3s ease-in-out;
}


.loader[b-l7bboj9ukp] {
    display: none;
    gap: 1rem;   
}

    .loader span[b-l7bboj9ukp] {
        width: 0.9rem;
        height: 0.9rem;
        border-radius: 50%;
        background-color: #316631;
        animation: pulse-b-l7bboj9ukp 1.5s infinite ease-in-out;
        opacity: 0.3;
    }

        .loader span:nth-child(1)[b-l7bboj9ukp] {
            animation-delay: 0s;
        }

        .loader span:nth-child(2)[b-l7bboj9ukp] {
             width: 1.2rem;
            height: 1.2rem;
            animation-delay: 0.3s;
        }

        .loader span:nth-child(3)[b-l7bboj9ukp] {
            width: 1.2rem;
            height: 1.2rem;
            animation-delay: 0.6s;
        }

.loading-text[b-l7bboj9ukp] {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

.loader-show[b-l7bboj9ukp] {
    display: flex;
    transition: display 3s ease-in-out;
}

@keyframes pulse-b-l7bboj9ukp {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}
/* _content/AuditProWebApp.Web/Components/SharedComponents/SummaryModal.razor.rz.scp.css */
.C-modal[b-0gr469jq8a] {
    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-0gr469jq8a] {
    max-height: 98vh; /* Limit to viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
    min-width: 80%;
    display: flex;
    justify-content: center;
}


.auditpro-hide[b-0gr469jq8a] {
    display: none;
}

.auditpro-show[b-0gr469jq8a] {
    display: flex;
}
/* _content/AuditProWebApp.Web/Components/SharedComponents/ToastNotification.razor.rz.scp.css */
:root[b-shf8qagzad] {
    --animate-notify: fade 5s ease-in-out 0.5s forwards;
    --animate-text: fadetext 3.5s;
}

.twist-notify[b-shf8qagzad] {
    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-shf8qagzad 5s linear;
    z-index: 9999;  
}

    .twist-notify div[b-shf8qagzad] {
        background-color: currentColor;
    }

    .twist-notify span[b-shf8qagzad] {
        opacity: 1;
        transition: opacity 3s;
      
    }

.success[b-shf8qagzad] {
    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-shf8qagzad] {
        animation: var(--animate-text);
    }

.failure[b-shf8qagzad] {
    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-shf8qagzad] {
        animation: var(--animate-text);
    }

.info[b-shf8qagzad] {
    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-shf8qagzad] {
        animation: var(--animate-text);
    }

@keyframes fade-b-shf8qagzad {
    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-shf8qagzad {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }
}

@keyframes notify-hidden-b-shf8qagzad {
    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;
    }
}
/* _content/AuditProWebApp.Web/Components/SharedComponents/TwistDateInput.razor.rz.scp.css */
#id-calender-img[b-x7ej4jksoq]{

}

#date-model-input[b-x7ej4jksoq]{
    display:grid;
    grid-template-columns:1fr 50px;
}  

    #date-model-input input[b-x7ej4jksoq]::-webkit-calendar-picker-indicator {
        display: none;
        -webkit-appearance: none;
    }

    #date-model-input input:first-child[b-x7ej4jksoq]{
        min-width:105px;
        border-start-end-radius:0;
        border-end-end-radius:0;
    }
    #date-model-input input:first-child:focus[b-x7ej4jksoq] {
       z-index:10;
    }

    #date-model-input input:last-child[b-x7ej4jksoq] {
        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-x7ej4jksoq]::-webkit-datetime-edit {
            display: none;
        }

        #date-model-input input:last-child[b-x7ej4jksoq]::-webkit-calendar-picker-indicator {
            opacity: 1;
            cursor: pointer;
        }

        #date-model-input:has(input:first-child:focus) input:last-child[b-x7ej4jksoq] {
            pointer-events: none;
            opacity: 0.5;
        }
/* _content/AuditProWebApp.Web/Components/SharedComponents/TwistInputSelector.razor.rz.scp.css */
.employee-select-container[b-xd3jgpljui] {
    position:relative;
    max-width: 600px;
    margin: auto;
}

.dropdown-wrapper[b-xd3jgpljui] {
    flex-wrap: nowrap;
}

.emp-dropdown-container[b-xd3jgpljui] {
    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-xd3jgpljui]{
    max-height:150px;
    overflow-y:scroll;
}

.selector-drop-button[b-xd3jgpljui] {
    display: flex;
    justify-content: center;
}

.employee-tab-content:has(input:focus) .emp-dropdown-container[b-xd3jgpljui] {
    display: block;
}

.employee-tab-content:has(.emp-dropdown-container.dropdown-show:hover) .emp-dropdown-container[b-xd3jgpljui] {
    display: block;
}

.dropdown-item[b-xd3jgpljui] {
    padding: 0.5rem 1rem;
    cursor: pointer;
}

    .dropdown-item:hover[b-xd3jgpljui] {
        background-color: #f1f1f1;
    }


    .dropdown-show[b-xd3jgpljui]{
       
    }
/* _content/AuditProWebApp.Web/Components/SharedComponents/TwistModal.razor.rz.scp.css */
.C-modal[b-7pzxlzmbvc] {
    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-7pzxlzmbvc] {
    display: flex;
    max-height: 98vh; /* Limit to viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
    width: 100%;   
    justify-content: center;
}


.auditpro-hide[b-7pzxlzmbvc] {
    display: none;
}

.auditpro-show[b-7pzxlzmbvc] {
    display: flex;
}
/* _content/AuditProWebApp.Web/Components/SharedComponents/TwistNumberInput.razor.rz.scp.css */
.audit-earnings-container[b-ffbxpsk1ii] {
   display:flex;
   flex-wrap:wrap;
   align-content:center;
   align-items:center;
    gap:5px;
}

label[b-ffbxpsk1ii]{
    
}

    .audit-earnings-container input[type="number"][b-ffbxpsk1ii]::-webkit-inner-spin-button,
    .audit-earnings-container input[type="number"][b-ffbxpsk1ii]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.audit-earnings-container:focus-within label[b-ffbxpsk1ii] {
    grid-column: 2;    
}
    .audit-earnings-container:has(:hover) input[b-ffbxpsk1ii]{
       display:flex;
       position:absolute;
       opacity:0;
    }


    .audit-earnings-container input[b-ffbxpsk1ii] {   
        max-height:40px;
        width: 0px;
        display: none;
        border: none;      
        grid-row:1;
        outline:none;
    }

        .audit-earnings-container input:focus[b-ffbxpsk1ii] {
            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;
        }

/* _content/AuditProWebApp.Web/Components/SharedComponents/TwistToggleSwitch.razor.rz.scp.css */
.switch[b-zoy6zniw2h] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input[b-zoy6zniw2h] {
        opacity: 0;
        width: 0;
        height: 0;
           }

.slider[b-zoy6zniw2h] {
    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-zoy6zniw2h]: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-zoy6zniw2h] {
    background: radial-gradient(ellipse at center, #0000FF 0%, #0078FF 40%, #FFFFFF 100%);
}

input:focus + .slider[b-zoy6zniw2h] {
    /*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-zoy6zniw2h]:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round[b-zoy6zniw2h] {
    border-radius: 34px;
}

    .slider.round[b-zoy6zniw2h]:before {
        border-radius: 50%;
    }

/* _content/AuditProWebApp.Web/Components/SharedComponents/VacationSummary.razor.rz.scp.css */
.earned[b-exo4or798r], .dayrelease[b-exo4or798r] {
    color: #007900;
}

.taken[b-exo4or798r] {
    color: #e50000;
}


.btn-white[b-exo4or798r] {
    background-color: transparent;
    color: black;
    border: none;
}

    .btn-white:hover[b-exo4or798r] {
        background-color: #f8f9fa;
    }
