/* /Components/Dashboard/CardMetrics.razor.rz.scp.css */
.cards-container[b-v4afljpsv6] {
    display: flex;
    justify-content: space-between; /* Distribute cards with equal space in between */
    flex-wrap: wrap; /* Allow wrapping to the next line */
    margin-top: .50rem;
}

.flex-card[b-v4afljpsv6] {
    flex: 1; /* Cards take up an equal width */
    max-width: calc(100% / 6 - 1rem); /* For six cards with a little space in between */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: add a little shadow for better UI */
    margin: 0.5rem; /* Space between cards */
    background-color: #fff; /* White background for each card */
    border-radius: 4px; /* Slight rounding for aesthetics */
}

.flex-card-body[b-v4afljpsv6] {
    padding: 1rem; /* Inner padding for card content */
    display: flex;
    justify-content: space-between; /* Space between text and icon */
    align-items: center; /* Vertically align content in the center */
}

.metric-value[b-v4afljpsv6] {
    padding: 1rem;
    background-color: #f5f5f5; /* Light gray footer */
    border-top: 1px solid #ddd; /* Divider line */
    text-align: center;
}
/* /Components/Risks/RiskApplicationAnswers.razor.rz.scp.css */
.fixed-card-body[b-0nzyg0uiv5] {
    height: 115px;
    font-size: .85rem;
}

.fixed-card-footer[b-0nzyg0uiv5] {
    height: 100px;
}
/* /Shared/ComponentLoadingAnimation.razor.rz.scp.css */

.parent-component[b-taf7vfm8hy] {
    position: relative;    
}

.loader-container[b-taf7vfm8hy] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(192, 192, 192, .50);
    z-index: 9999;
}

.loader[b-taf7vfm8hy] {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
}

.inner[b-taf7vfm8hy] {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

    .inner.one[b-taf7vfm8hy] {
        left: 0%;
        top: 0%;
        animation: rotate-one-b-taf7vfm8hy 1s linear infinite;
        border-bottom: 3px solid #fff; /* #2F4F4F; */
    }

    .inner.two[b-taf7vfm8hy] {
        right: 0%;
        top: 0%;
        animation: rotate-two-b-taf7vfm8hy 1s linear infinite;
        border-right: 3px solid #fff;
    }

    .inner.three[b-taf7vfm8hy] {
        right: 0%;
        bottom: 0%;
        animation: rotate-three-b-taf7vfm8hy 1s linear infinite;
        border-top: 3px solid #fff;
    }

@keyframes rotate-one-b-taf7vfm8hy {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two-b-taf7vfm8hy {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three-b-taf7vfm8hy {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
/* Layout container */
.layout-container[b-zhuydcysfh] {
    display: flex;
    flex-direction: row; /* This ensures the children are placed horizontally */
    width: 100%; /* Ensuring it takes up the entire width of the parent */
    height: calc(100vh - 75px); /* Subtract the height of the navbar */
}

#sidebarMenu[b-zhuydcysfh] {
    flex: 0 0 250px; /* Adjust 250px to whatever width you want for the sidebar */
    background-color: #f5f5f5; /* Some background to distinguish it */
    overflow-y: auto; /* For scrolling */
    height: calc(100vh - 75px); /* Subtract the height of the navbar */    
}

.layout-main-content[b-zhuydcysfh] {
    flex: 1; /* This makes the main content take the rest of the horizontal space */
    overflow-y: auto; /* For scrolling */
}


/* Main content styles */
.main-content[b-zhuydcysfh] {
    flex-grow: 1; /* Make it take the remaining space after the sidebar */
    overflow-y: auto; /* Make it scrollable if content exceeds its height */
    padding: 15px; /* Some padding for the content */
}

/* Base style for each menu item */
.nav-link[b-zhuydcysfh] {
    display: block;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

/* Space between the icon and the text */
.nav-link .me-1[b-zhuydcysfh] {
    margin-right: 10px;
}
.nav-link .me-2[b-zhuydcysfh] {
    margin-right: 20px;
}

/* Hover effect */
.nav-link:hover[b-zhuydcysfh] {
    background-color: #e0e0e0;
    text-decoration: none; /* To ensure that the text is not underlined on hover */
}

/* Active state styling */
.nav-link.active[b-zhuydcysfh] {
    background-color: #007bff;
    color: white;
    border-color: #0069d9;
}


/* Align the icons to the middle with respect to the adjacent text */
.nav-link .me-1[b-zhuydcysfh] {
    margin-right: 10px;
    vertical-align: middle;
}
    
.nav-item[b-zhuydcysfh] {
    font-size: .90rem;
    font-weight: bold;
    padding: .25rem;
    padding-bottom: 0.15rem;
}

.nav-item:first-of-type[b-zhuydcysfh] {
    padding-top: .25rem;
}

.nav-item:last-of-type[b-zhuydcysfh] {
    padding-bottom: .25rem;
}

.nav-item[b-zhuydcysfh]  a {
    color: var(--nav-base-color);
    border-radius: 0px;
    height: 2.5rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    border-left: var(--nav-active-border) solid var(--bg-main);
}

.nav-item[b-zhuydcysfh]  a:hover {
    background-color: var(--nav-hover-color);
    border-left: var(--nav-active-border) solid var(--nav-hover-color);
}

.nav-item[b-zhuydcysfh]  a.active {
    background-color: lightgray;
    color: var(--nav-active-color);
    border-left: var(--nav-active-border) solid var(--nav-border-color);
}

.nav-item[b-zhuydcysfh]  a.disabled {
    pointer-events: none;
    cursor: not-allowed;
    color: gray;
}


a.nav-link.disabled[b-zhuydcysfh] {
    color: gray;
    pointer-events: none;
    cursor: default;
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-uj9u7ymrwc] {
    background-color: rgba(255, 255, 255, 1);
}

.navbar-brand[b-uj9u7ymrwc] {
    font-size: 1.1rem;
}

.oi[b-uj9u7ymrwc] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.menu-group[b-uj9u7ymrwc] {
    font-size: .75rem;
    font-weight: bold;
    color: rgb(17, 67, 119);
    margin-left: 12px;
    margin-bottom: 7px;
    margin-top: 7px;
}

.nav-item[b-uj9u7ymrwc] {
    font-size: .75rem;
    font-weight: bold;
    /*padding-bottom: 0.15rem; */
}

    .nav-item:first-of-type[b-uj9u7ymrwc] {
        /*padding-top: .25rem;*/
    }

    .nav-item:last-of-type[b-uj9u7ymrwc] {
        /*padding-bottom: .25rem;*/
    }

    .nav-item[b-uj9u7ymrwc]  a {
        color: var(--nav-base-color);
        border-radius: 0px;
        height: 2.5rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        border-left: var(--nav-active-border) solid var(--bg-main);
    }

        .nav-item[b-uj9u7ymrwc]  a:hover {
            background-color: var(--nav-hover-color);
            border-left: var(--nav-active-border) solid var(--nav-hover-color);
        }

        .nav-item[b-uj9u7ymrwc]  a.active {
            background-color: white;
            color: var(--nav-active-color);
            border-left: var(--nav-active-border) solid var(--nav-border-color);
        }

@media (min-width: 641px) {
    .navbar-toggler[b-uj9u7ymrwc] {
        display: none;
    }

    .collapse[b-uj9u7ymrwc] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
