/* _content/MIRA/Components/ColorExplanations/ColorExplanation.razor.rz.scp.css */
.color-explanation-section[b-qnxzzzry19] {
    display: flex;
    flex-direction: column;
    width: fit-content;
    border-radius: 5px;
    border: solid 3px var(--secondary-color);
    padding: 1rem 1rem 2rem 1rem;
    margin: 1rem;
}

.color-explanation-section p[b-qnxzzzry19] {
    margin: 0;
}

.color-explanation-wrapper[b-qnxzzzry19] {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.color-explanation[b-qnxzzzry19] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
/* _content/MIRA/Components/Layout/LoggedIn/AuthenticatedLayout.razor.rz.scp.css */
@font-face {
    font-family: "JetBrainsMono-medium";
    src: url('../fonts/JetBrainsMono-Medium.ttf')
}

.content-wrapper[b-eulo13asjn] {
    margin-left: 100px;
    transition: margin-left 0.3s ease-in-out;
}

/* Gets rid of margin left for navbar when collapsed */
.content-wrapper.collapsed[b-eulo13asjn] {
    margin-left: 0;
}

.page-wrapper[b-eulo13asjn] {
    display: flex;
    transition: margin-left 0.3s ease-in-out;
    width: 100%;
}
.top-bar[b-eulo13asjn] {
    display: flex;
    justify-content: flex-end;
    padding: 0 1rem 1rem 1rem ;
}
.user-info[b-eulo13asjn] {
    position: relative;
    top: 1rem;
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #6BAB8B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info #user-full-name[b-eulo13asjn] {
    font-family: JetBrainsMono-medium;
    padding: 0.5rem;
    color: white;
}

@media (max-width: 768px) {
    .content-wrapper[b-eulo13asjn] {
        margin-left: 70px;
    }
    .content-wrapper.collapsed[b-eulo13asjn] {
        padding-left: 2px;
        padding-right: 2px;
        padding-top: 0;
    }
    .top-bar[b-eulo13asjn] {
        display: flex;
        justify-content: flex-end;
        padding: 10px;
    }
    .user-info[b-eulo13asjn] {
        position: relative;
        top: 2px;
        right: 2px;
    }
}
/* _content/MIRA/Components/Layout/LoggedIn/NavBar.razor.rz.scp.css */
.navbar-container[b-mg5fzh4re8] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
    background-color: #6BAB8B;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    transition: width 0.3s ease-in-out;
}

.navbar-container.collapsed[b-mg5fzh4re8] {
    transform: translateX(-100%);
    width: 0;
}

.navbar[b-mg5fzh4re8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.navbar-list[b-mg5fzh4re8] {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1;/* Creates space between settings and other items */
}

.navbar-list li[b-mg5fzh4re8] {
    margin-bottom: 20px;
}

.navbar-list li:nth-last-child(2)[b-mg5fzh4re8] {
    margin-top: auto; 
}

.navbar-list i[b-mg5fzh4re8] {
    padding: 5px;
    border-radius: 50%;
    transition: box-shadow 0.2s ease;
}

.navbar-list i:hover[b-mg5fzh4re8] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar-list i[b-mg5fzh4re8] {
    font-size: 25px;
}

.navbar-link[b-mg5fzh4re8] {
    text-decoration: none;
    color: white;
    padding: 10px;
    font-size: 18px;
    display: block;
    transition: background-color 0.3s;
    width: 100%;
    text-align: left;
}

.navbar-link i[b-mg5fzh4re8] {
    color: white;
}

.navbar-link:hover[b-mg5fzh4re8] {
    background-color: #6497cd;
}

.navbar-container.collapsed .navbar-link[b-mg5fzh4re8] {
    text-align: center;
}

.toggle-btn[b-mg5fzh4re8] {
    transition: box-shadow 0.2s ease;
}

.toggle-btn.inside[b-mg5fzh4re8] {
    background: none;
    border: none;
    padding: 5px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* removes duplicate border styling */
.toggle-btn.inside i[b-mg5fzh4re8] {
    padding: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.toggle-btn.outside[b-mg5fzh4re8] {
    position: fixed;
    top: 2px;
    left: 27px;
    background: #6BAB8B;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 900; /* Ensures it stays visible */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.toggle-btn i[b-mg5fzh4re8] {
    color: white;
}

.toggle-btn i:hover[b-mg5fzh4re8] {
    color: white;
}

.toggle-btn:hover[b-mg5fzh4re8] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar-container:not(.collapsed) + .toggle-btn[b-mg5fzh4re8] {
    display: none;
}

/* Hides items */
.navbar-container.collapsed .navbar[b-mg5fzh4re8] {
    visibility: hidden; 
}

@media (max-width: 768px) {
    .navbar-container[b-mg5fzh4re8] {
        width: 80px;
    }
    .navbar-container.collapsed[b-mg5fzh4re8] {
        width: 0; 
    }
    .toggle-btn.outside[b-mg5fzh4re8] {
        top: 10px;
        left: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1025px) {
    .navbar-container[b-mg5fzh4re8] {
        width: 80px;
    }
    .toggle-btn.outside[b-mg5fzh4re8] {
        top: 10px;
        left: 10px;
    }
}
/* _content/MIRA/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-kgh8u1ve2q] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-kgh8u1ve2q] {
    flex: 1;
}

.sidebar[b-kgh8u1ve2q] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-kgh8u1ve2q] {
    height: 3.5rem;
    background-color: white !important;
    color: white;
}

#blazor-error-ui[b-kgh8u1ve2q] {
    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-kgh8u1ve2q] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/MIRA/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-6563ssyixd] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

.navbar-toggler:checked[b-6563ssyixd] {
    background-color: rgba(255, 255, 255, 0.5);
}

.navbar-brand[b-6563ssyixd] {
    font-size: 1.1rem;
}

.nav-item[b-6563ssyixd] {
    font-size: 0.9rem;
    margin: 0;
    padding: 0.5rem 1rem;
    display:flex;
    align-items: center;
}

.nav-scrollable[b-6563ssyixd] {
    display: none;
}

.navbar-hidden[b-6563ssyixd] {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler:checked ~ .nav-scrollable[b-6563ssyixd] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-6563ssyixd] {
        display: none;
    }

    .nav-scrollable[b-6563ssyixd] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/MIRA/Components/Layout/ProgressBar.razor.rz.scp.css */
.progress[b-1ybc2ccdrn] {
    width: 100%;
    height: 25px;
}
/* _content/MIRA/Components/Notifications/Toast.razor.rz.scp.css */
.toast[b-2o7inx7no7] {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    padding: 16px 24px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
}

.success-toast[b-2o7inx7no7] {
    background-color: #6BAB8B;
}

.error-toast[b-2o7inx7no7] {
    background-color: #D14D4D;
}

.toast button[b-2o7inx7no7] {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 12px;
}
/* _content/MIRA/Components/Pages/Admin/SendInvite.razor.rz.scp.css */
.send-invite-container[b-dr2h9px7oj] {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}
/* _content/MIRA/Components/Pages/ConsultPages/ActiveCases.razor.rz.scp.css */
.active-cases-container[b-ist497bxp3] {
    width: 100%;
}

#active-cases-title[b-ist497bxp3] {
    font-family: JetBrainsMono-medium;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: #214B41;
}

.active-cases[b-ist497bxp3] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.active-case-wrapper-link[b-ist497bxp3] {
    text-decoration: none;
    color: inherit;
    display: block;
}
.active-case-wrapper[b-ist497bxp3] {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    transition: box-shadow 0.2s ease;
}

.active-case-wrapper:hover[b-ist497bxp3] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.case-property-title[b-ist497bxp3] {
    font-family: JetBrainsMono-medium;
    padding: 1rem;
    background-color: #f0f0f0;
    font-weight: 700;
    text-align: center;
    color: #214B41;
}

.case-image[b-ist497bxp3] {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background-color: #ddd;
}
.show-more-container[b-ist497bxp3] {
    display: flex;
    justify-content: flex-end;
}
.show-more[b-ist497bxp3] {
    font-family: JetBrainsMono-medium;
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: #6BAB8B;
    cursor: pointer;
    font-weight: 700;
}

.show-more:hover[b-ist497bxp3] {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .active-cases-container[b-ist497bxp3] {
        width: 100%;
    }
}
/* _content/MIRA/Components/Pages/ConsultPages/AreaComponents/AreaList.razor.rz.scp.css */
.modal-overlay[b-nmpfdkbxlh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);  
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content[b-nmpfdkbxlh] {
    background-color: #f3f3f3ff;
    border-radius: 8px;
    padding: 1rem;
    height: auto;
    max-height: 100vh;
    overflow: hidden;
    /*    width: clamp(320px, 60vw, 800px);*/
    width: clamp(320px, 80vw, 1000px);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.area-list-wrapper[b-nmpfdkbxlh] {
    position: relative;
    height: 100%;
}

.area-list-title[b-nmpfdkbxlh] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.area-list-title h5[b-nmpfdkbxlh] {
    font-weight: 600;
    color: var(--primary-color);
}

.close-btn[b-nmpfdkbxlh] {
    border-radius: 50%;
    border: none;
    color: #fff;
    background-color: darkred;
    width: 30px;
    height: 30px;
    margin-bottom: 0.5rem;
}

.area-card-container[b-nmpfdkbxlh] {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1rem; /* spacing between cards */
    margin-top: 1rem;
    padding-bottom: 3rem;
}

.area-card[b-nmpfdkbxlh] {
    border: 1px solid #ddd;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
/*    margin-bottom: 0.5rem;*/
    border-radius: 4px;
    background-color: #f9f9f9;
}
.area-card p[b-nmpfdkbxlh] {
    margin: 0;
    font-size: 0.8rem;
}

.area-card h5[b-nmpfdkbxlh] {
    margin: 0;
    font-size: 1rem;
}

.area-card-bottom[b-nmpfdkbxlh] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.btn-redirect-area[b-nmpfdkbxlh] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-decoration: none;
}

.btn-redirect-area i[b-nmpfdkbxlh] {
    margin: 0 !important;
}

.plan-info[b-nmpfdkbxlh] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.plan-info a[b-nmpfdkbxlh] {
    text-decoration: none;
}
.plan-info a:hover[b-nmpfdkbxlh] {
    cursor: pointer;
}

.pagination-controls[b-nmpfdkbxlh] {
    margin-top: 1rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.pagination-controls:hover[b-nmpfdkbxlh] {
    cursor: pointer;
}
#redirect-arrow[b-nmpfdkbxlh] {
    margin-left: 0.5rem;
}
#sample-icon[b-nmpfdkbxlh] {
    margin-right: 0.5rem;
}

@media (max-width: 600px) {
    .area-card-container[b-nmpfdkbxlh] {
        /* stack cards in one column on small screens */
        grid-template-columns: 1fr !important;
        gap: 0.4rem;
    }
    .modal-content[b-nmpfdkbxlh] {
        /* let the modal fill most of the screen on phones */
        width: 90vw !important;
    }
    .pagination-controls[b-nmpfdkbxlh] {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
/* _content/MIRA/Components/Pages/ConsultPages/CaseComponents/CaseObjectCountsModule.razor.rz.scp.css */
.case-counts-container[b-hzla27a9nw] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.case-object-card[b-hzla27a9nw] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    color: white;
    background-color: var(--secondary-color);
    padding: 0 1rem 0 1rem;
    transition: box-shadow .25s ease, transform .15s ease;
    min-height: 50px;
    cursor: pointer;
}

.case-object-card:hover[b-hzla27a9nw] {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.case-object-card i[b-hzla27a9nw] {
    color: white;
    border-radius: 50%;
    transition: color .15s ease, transform .15s ease;
}

.decrement-count-btn i:hover[b-hzla27a9nw] {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: lightgray;
}
.increment-count-btn i:hover[b-hzla27a9nw] {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: lightgray;
}

.fire-detector-icon[b-hzla27a9nw] {
    width: 30px;
    height: 30px;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
}

.fluorescent-light-icon[b-hzla27a9nw] {
    width: 40px;
    height: 40px;
    margin-right: 0.3rem;
}

.door-closer-icon[b-hzla27a9nw] {
    width: 40px;
    height: 40px;
    margin-right: 0.3rem;
}

.controls[b-hzla27a9nw] {
    display: flex;
    gap: 0.25rem;
    min-width: 140px;
    justify-content: flex-end;
}

.controls.hidden[b-hzla27a9nw] {
    opacity: 0;
    pointer-events: none;
}

.controls.visible[b-hzla27a9nw] {
    opacity: 1;
    pointer-events: auto;
}

.decrement-count-btn[b-hzla27a9nw] {
    border: none;
    margin-left: 0.5rem;
    background-color: transparent;
    font-size: 20px;
}

.increment-count-btn[b-hzla27a9nw] {
    border: none;
    margin-right: 0.5rem;
    background-color: transparent;
    font-size: 20px;
}

.done-btn[b-hzla27a9nw] {
    border-radius: 4px;
    color: var(--secondary-color);
    border: white solid 1px;
    background-color: white;
    transition: color .15s ease, background-color 0.15s ease, transform .15s ease;
}

.done-btn:hover[b-hzla27a9nw] {
    background-color: lightgray;
    border: lightgray solid 1px;
    color: var(--secondary-color);
}

.mark-placement-btn[b-hzla27a9nw] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 1rem;
    border-radius: 4px;
    color: var(--secondary-color);
    border: white solid 1px;
    background-color: white;
    transition: color .15s ease, background-color 0.15s ease, transform .15s ease;
}

.mark-placement-btn:hover[b-hzla27a9nw] {
    background-color: lightgray;
    border: lightgray solid 1px;
    color: var(--secondary-color);
}

.mark-placement-btn i[b-hzla27a9nw] {
    color: var(--secondary-color);
    font-size: 20px;
}
/* _content/MIRA/Components/Pages/ConsultPages/CaseComponents/SidebarTools.razor.rz.scp.css */
.sidebar[b-6zte9cqlfl] {
    width: 60px;
    background-color: #ffffff;
    position: relative;
    border: 1px solid #808080;
    border-radius: 5px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.nav-links[b-6zte9cqlfl] {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.nav-links li[b-6zte9cqlfl] {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.nav-links li a[b-6zte9cqlfl] {
    color: #555;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover[b-6zte9cqlfl],
.nav-links li a:active[b-6zte9cqlfl],
.nav-links li a.active[b-6zte9cqlfl] {
    background-color: #b2b2b2;
    color: white;
}
/* _content/MIRA/Components/Pages/ConsultPages/CasesList.razor.rz.scp.css */
@font-face {
    font-family: "JetBrainsMono-medium";
    src: url('../fonts/JetBrainsMono-Medium.ttf')
}

#cases-list-container[b-4r6fc3af0l] {
    width: 100%;
    margin: 0;
}

.search-container[b-4r6fc3af0l] {
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 500px;
}

.search-input[b-4r6fc3af0l] {
    width: 100%;
    padding-right: 2.8rem;
    border-radius: 25px;
    padding-left: 1rem;
}

.search-icon[b-4r6fc3af0l] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #6BAB8B;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

#edit-case-btn[b-4r6fc3af0l] {
    gap: 0.5rem;
}
.button-and-filter-container[b-4r6fc3af0l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 1.5rem;
    padding-right: 30px;
    padding-left: 30px;
}

.case-action-btn-wrapper[b-4r6fc3af0l] {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.case-action-btn-wrapper h5[b-4r6fc3af0l] {
    font-family: JetBrainsMono-medium;
    padding-left: 1rem;
    margin: 0;
}

/* edit and delete buttons only visible when a case is selected */
.create-case-btn[b-4r6fc3af0l], 
.edit-case-btn[b-4r6fc3af0l], 
.delete-case-btn[b-4r6fc3af0l] {
    border-radius: 50%;
    height: 35px;
    width: 35px;
    color: white;
    background-color: #6BAB8B;
    border: none;
    transition: box-shadow 0.2s ease;
}

.create-case-btn:hover[b-4r6fc3af0l],
.edit-case-btn:hover[b-4r6fc3af0l],
.delete-case-btn:hover[b-4r6fc3af0l] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.filter-icon[b-4r6fc3af0l] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.filter-icon .dropdown-menu[b-4r6fc3af0l] {
    position: absolute;
    top: 40px;
    right: 0;
    display: block;
    border: 1px solid #ccc;
    padding: 0.5rem 0;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.filter-icon i[b-4r6fc3af0l] {
    font-size: 35px;
    color: #6BAB8B;
}

.alert-wrapper[b-4r6fc3af0l] {
    margin-left: 1rem;
    margin-right: 1rem;
}

/* table/list */


.table[b-4r6fc3af0l] {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
    border-collapse: collapse;
}

.table th[b-4r6fc3af0l], .table td[b-4r6fc3af0l] {
    border: 1px solid lightgray;
    padding: 1.3rem;
    text-align: center;
    vertical-align: middle;
}

.table thead th[b-4r6fc3af0l] {
    background-color: #f2f2f2;  
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    border: 1px solid lightgray;
}

.table tbody tr[b-4r6fc3af0l] {
    background-color: white;
    transition: background-color 0.3s ease-in-out;
}

.table tbody tr:hover[b-4r6fc3af0l] {
    background-color: #f2f2f2;
    cursor: pointer;
}

.table tbody tr.selected[b-4r6fc3af0l] {
    background-color: #d1e7dd !important;
    border-left: 2px solid #6BAB8B !important;
    border-right: 2px solid #6BAB8B !important;
}

/* Prevent hover from overriding selection */
.table tbody tr:hover:not(.selected)[b-4r6fc3af0l] {
    background-color: #f2f2f2 !important;
}

/* Case property status cell colors */
.status-active[b-4r6fc3af0l] {
    background-color: #d4edda;
    padding: 5px;
}

.status-closed[b-4r6fc3af0l] {
    background-color: #f8d7da;
    padding: 5px;
}

.no-select[b-4r6fc3af0l] {
    user-select: none; /* Prevents text selection */
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none; /* For Firefox */
    -ms-user-select: none; /* For Internet Explorer */
}
.goto-case-btn[b-4r6fc3af0l] {
    display: none;
}

.pagination-buttons[b-4r6fc3af0l] {
    margin: 2rem 0 1rem 0;
}
/* Smartphones */
@media (max-width: 768px) {
    .search-container[b-4r6fc3af0l] {
        width: 250px;
        margin-top: 10px;
    }
    .button-and-filter-container[b-4r6fc3af0l] {
        display: flex;
        justify-content: space-evenly;
        padding-right: 0;
        padding-top: 5px;
        padding-left: 0;
    }
    .case-action-btn-wrapper h5[b-4r6fc3af0l] {
        font-size: 0.9rem;
        padding-left: 0.3rem;
    }
    .filter-icon[b-4r6fc3af0l] {
        display: none;
    }
    .table thead[b-4r6fc3af0l] {
        display: none;
    }
    .table[b-4r6fc3af0l],
    .table tbody[b-4r6fc3af0l],
    .table tr[b-4r6fc3af0l],
    .table td[b-4r6fc3af0l] {
        display: block;
        width: 100%;
        margin-left: 0;
    }
    .table tr[b-4r6fc3af0l] {
        position: relative;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .table td[b-4r6fc3af0l] {
        font-size: 0.9rem;
        text-align: left;
        padding: 0.5rem 0;
        position: relative;
        padding-left: calc(50% + 0.5rem);
    }
    .table td[b-4r6fc3af0l]::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        font-weight: bold;
        white-space: nowrap;
    }
    .table tr[b-4r6fc3af0l]::after {
        content: '';
        position: absolute;
        top: 0.5rem;
        bottom: 0.5rem;
        left: 50%;
        width: 1px;
        background-color: #ddd;
    }
    .goto-case-btn[b-4r6fc3af0l] {
        display: inline-block;
    }
}
/* _content/MIRA/Components/Pages/ConsultPages/ConsultLandingPage.razor.rz.scp.css */
.consult-container[b-9incjphzm3] {
    padding: 0 3rem 3rem 3rem;
}

.text-and-button-container[b-9incjphzm3] {
    font-family: JetBrainsMono-medium;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e7e6e6;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    gap: 1rem;
}

.text-and-button-container h1[b-9incjphzm3] {
    color: #6BAB8B;
    margin: 0;
}

.welcome-text[b-9incjphzm3] {
    /* extra klass om du vill styla rubrik separat */
}

.case-action-btn-wrapper[b-9incjphzm3] {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.case-action-btn-wrapper h5[b-9incjphzm3] {
    padding-left: 1rem;
    margin: 0;
}

.create-case-btn[b-9incjphzm3] {
    border-radius: 50%;
    height: 35px;
    width: 35px;
    color: white;
    background-color: #6BAB8B;
    border: none;
    transition: box-shadow 0.2s ease;
}

.create-case-btn:hover[b-9incjphzm3] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.landing-page-container[b-9incjphzm3] {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.left-column[b-9incjphzm3],
.right-column[b-9incjphzm3] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (max-width: 768px) {
    .text-and-button-container[b-9incjphzm3] {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        gap: 0.8rem;
    }

    .case-action-btn-wrapper[b-9incjphzm3] {
        flex-direction: row;
        align-items: center;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .case-action-btn-wrapper h5[b-9incjphzm3] {
        font-size: 0.9rem;
        padding-left: 0.5rem;
    }

    .landing-page-container[b-9incjphzm3] {
        flex-direction: column;
    }
}
/* _content/MIRA/Components/Pages/ConsultPages/CreateCaseForm.razor.rz.scp.css */
.mandatory-form-fields-info[b-kbpfbkiv3r] {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 12px;
}

.mandatory-form-fields-info p[b-kbpfbkiv3r] {
    margin: 0;
    padding: 0;
}

#image-container[b-kbpfbkiv3r] {
    padding-left: 1rem;
    display: flex;
    justify-content: flex-start;
}

.image-wrapper[b-kbpfbkiv3r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 160px;
}

.image-miniature[b-kbpfbkiv3r] {
    width: 200px;
    height: auto;
    border: 1px solid #ccc;
    margin: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.image-miniature:hover[b-kbpfbkiv3r] {
    transform: scale(1.4); /* Slight zoom on hover */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

ul[b-kbpfbkiv3r] {
    margin: 0;
}
li[b-kbpfbkiv3r] {
    margin: 5px;
}
/* _content/MIRA/Components/Pages/ConsultPages/CreatePlanForm.razor.rz.scp.css */
@font-face {
    font-family: "JetBrainsMono-medium";
    src: url('../fonts/JetBrainsMono-Medium.ttf')
}

.exit-wrapper[b-54k5rldb8w] {
    text-align: right;
}

h3[b-54k5rldb8w] {
    font-family: JetBrainsMono-medium;
}

h5[b-54k5rldb8w] {
    font-family: JetBrainsMono-medium;
}
.create-plan-container[b-54k5rldb8w] {
    margin-left: 5rem;
}
.form-group[b-54k5rldb8w] {
    max-width: 30rem;
}

#pdf-container[b-54k5rldb8w] {
    padding-left: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: flex-start;
}

.pdf-page-wrapper[b-54k5rldb8w] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 160px;
}

.pdf-page-miniature[b-54k5rldb8w] {
    width: 200px;
    height: auto;
    border: 1px solid #ccc;
    margin: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
    cursor: pointer; 
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.pdf-page-miniature:hover[b-54k5rldb8w] {
    transform: scale(1.4); /* Slight zoom on hover */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.pdf-page-wrapper input[type="checkbox"][b-54k5rldb8w] {
    margin-top: 5px;
}
/* _content/MIRA/Components/Pages/ConsultPages/InactiveCases.razor.rz.scp.css */
.inactive-cases-container[b-xp7wlqjeti] {
    width: 100%;
}

#inactive-cases-title[b-xp7wlqjeti] {
    font-family: JetBrainsMono-medium;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: #214B41;
}

.inactive-cases[b-xp7wlqjeti] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.inactive-case-wrapper-link[b-xp7wlqjeti] {
    text-decoration: none;
    color: inherit;
    display: block;
}
.inactive-case-wrapper[b-xp7wlqjeti] {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    transition: box-shadow 0.2s ease;
}

.inactive-case-wrapper:hover[b-xp7wlqjeti] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.case-property-title[b-xp7wlqjeti] {
    font-family: JetBrainsMono-medium;
    padding: 1rem;
    background-color: #f0f0f0;
    font-weight: 700;
    text-align: center;
    color: #214B41;
}

.case-image[b-xp7wlqjeti] {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background-color: #ddd;
}
.show-more-container[b-xp7wlqjeti] {
    display: flex;
    justify-content: flex-end;
}
.show-more[b-xp7wlqjeti] {
    font-family: JetBrainsMono-medium;
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: #6BAB8B;
    cursor: pointer;
    font-weight: 700;
}

.show-more:hover[b-xp7wlqjeti] {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .inactive-cases-container[b-xp7wlqjeti] {
        width: 100%;
    }
}
/* _content/MIRA/Components/Pages/ConsultPages/ModalComponents/ConfirmModal.razor.rz.scp.css */
.modal-overlay[b-2exce28q2c] {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1055;
    width: 400px;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: #f3f3f3ff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    border: 4px solid #154A38;
}

.modal-content[b-2exce28q2c] {
    background-color: #f3f3f3ff;
    border: none;
    text-align: center;
    padding: 1rem 1rem 0.5rem 1rem;
    height: 100%;
    width: 100%;
}

.modal-buttons[b-2exce28q2c] {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Smartphones */
@media (max-width: 768px) {
    .modal-overlay[b-2exce28q2c] {
        width: 90%;
    }
}
/* _content/MIRA/Components/Pages/ConsultPages/ModalComponents/ModalManager.razor.rz.scp.css */
.floating-form[b-8l8etzsb0v] {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    background: #f4f4f4;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
}
/* _content/MIRA/Components/Pages/ConsultPages/PlanComponents/MapViewer.razor.rz.scp.css */
.map-loading-overlay[b-6fjesk4vjo] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#plan-view[b-6fjesk4vjo] {
    border: 1px solid #ccc;
    border-top: none;
    display: flex;
    flex-direction: column;
    background-color: #e8e8e8;
    border-radius: 5px 0 5px 5px;
    overflow: hidden;
    flex-grow: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.plan-image-container[b-6fjesk4vjo] {
    border: 1px solid #ccc;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.plan-image-container:active[b-6fjesk4vjo] {
    cursor: grabbing;
}

#leaflet-map[b-6fjesk4vjo] {
    width: 100%;
    height: 100%;
    background-color: white;
}

.edit-delete-btn-container[b-6fjesk4vjo] {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 999; /* Ensure it appears above the map */
}

.edit-delete-btn[b-6fjesk4vjo] {
    padding: 10px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background-color 0.2s ease, transform 0.3s ease;
}

.edit-delete-btn:hover[b-6fjesk4vjo] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.edit-btn[b-6fjesk4vjo], .chevron-btn[b-6fjesk4vjo] {
    background-color: white;
    color: black;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.3s ease;
}

.edit-btn.active[b-6fjesk4vjo] {
    background-color: #b2b2b2;
}

.chevron-btn[b-6fjesk4vjo] {
    background-color: white;
    padding: 8px 12px;
}

.chevron-btn:hover[b-6fjesk4vjo], .edit-btn:hover[b-6fjesk4vjo] {
    background-color: #b2b2b2;
}
/* _content/MIRA/Components/Pages/ConsultPages/PlanComponents/PlanTabs.razor.rz.scp.css */
.plan-tabs[b-k56c6wg8iy] {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.tab-wrapper[b-k56c6wg8iy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e8e8e8;
    border: 1px solid #ccc;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Arial", sans-serif;
    position: relative;
    padding: 0;
}

.tab-wrapper.active[b-k56c6wg8iy] {
    background: white;
    color: black;
    position: relative;
    z-index: 3;
}

.tab-button[b-k56c6wg8iy] {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    flex-grow: 1;
    text-align: left;
}

.tab-actions[b-k56c6wg8iy] {
    display: flex;
    gap: 5px;
    padding-right: 5px;
}

.btn-icon[b-k56c6wg8iy] {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

    .btn-icon i[b-k56c6wg8iy] {
        color: #555;
        transition: color 0.2s;
    }

    .btn-icon:hover i[b-k56c6wg8iy] {
        color: #000;
    }

.btn-delete i[b-k56c6wg8iy] {
    color: var(--bs-danger);
}

.btn-edit i[b-k56c6wg8iy] {
    color: var(--bs-primary);
}

.tab-wrapper.active[b-k56c6wg8iy] {
    background: white;
    color: black;
    position: relative;
    z-index: 3;
}

#plan-view[b-k56c6wg8iy]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 1;
    pointer-events: none;
}

.tab-wrapper.active[b-k56c6wg8iy]::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    z-index: 4;
}
/* _content/MIRA/Components/Pages/ConsultPages/ReportComponents/GenerateReportModal.razor.rz.scp.css */

.modal-overlay[b-c8a01hjrho] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1055;
    padding: 2rem; 
    overflow: visible;
}

.modal-content[b-c8a01hjrho] {
    background: #f3f3f3;
    border: 4px solid #154A38;
    border-radius: 12px;
    padding: 0.5rem;
    width: 70%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    overflow: visible;
}

.modal-content > h3[b-c8a01hjrho] {
    margin: .75rem 1rem 0.75rem 1rem;
}

.modal-content > progress[b-c8a01hjrho], .modal-content > .progressbar[b-c8a01hjrho] {
    margin: .5rem 1rem;
}

.header[b-c8a01hjrho] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.pdf-scroll[b-c8a01hjrho] {
    overflow: auto;
    padding: 1rem;
}

.pdf-container[b-c8a01hjrho] {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.pdf-page-wrapper[b-c8a01hjrho] {
    width: 140px; /* controls thumbnail size */
    margin: 0 auto;
    text-align: center;
    overflow: visible;
}

.pdf-page-miniature[b-c8a01hjrho] {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.414;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,.2);
    transition: transform .15s ease, box-shadow .15s ease;
    will-change: transform;
}

.pdf-page-miniature:hover[b-c8a01hjrho] {
    position: relative;
    z-index: 1000;
    transform: scale(3);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.actions[b-c8a01hjrho] {
/*    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    margin: 1rem 0 1rem 0;*/
}
/* _content/MIRA/Components/Pages/ConsultPages/SampleCaseStatisticsChart.razor.rz.scp.css */
.statistics-chart-wrapper[b-awjmc6vp0r] {
    margin: 2rem 2rem 2rem 3rem;
}

.statistics-chart-label[b-awjmc6vp0r] {
    font-family: JetBrainsMono-medium;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: #214B41;
}

.statistics-graph-container[b-awjmc6vp0r] {
    position: relative;
    height: 300px;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .statistics-chart-wrapper[b-awjmc6vp0r] {
        margin: 0rem 0rem 2rem 0rem;
    }

 

    .statistics-graph-container[b-awjmc6vp0r] {
        margin: 0;
    }

}



/* _content/MIRA/Components/Pages/ConsultPages/SampleComponents/SampleList.razor.rz.scp.css */
.sample-list-container[b-12py6ntwgy] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.sample-list-titles[b-12py6ntwgy] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.sample-list-columns[b-12py6ntwgy] {
    display: flex;
    gap: 2rem;
    min-height: 300px;
}

.sample-column[b-12py6ntwgy] {
    flex: 1;
}

.sample-card[b-12py6ntwgy] {
    border: 1px solid #ddd;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.sample-card p[b-12py6ntwgy] {
    margin: 0;
}
.sample-card.selected[b-12py6ntwgy] {
    border: 2px solid #6BAB8B;
    background-color: #9cdcbb65;
}

.modal-overlay[b-12py6ntwgy] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0,0,0,0.4);*/ /* backdrop */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1000;
}

.modal-content[b-12py6ntwgy] {
    background-color: #f3f3f3ff;
    border-radius: 8px;
    padding: 1rem;
    height: 550px;
    width: 500px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.modal-footer[b-12py6ntwgy] {
    padding: 0.5rem 0 0 0;
    margin: 0;
    justify-content: space-evenly;
}
.modal-footer button[b-12py6ntwgy] {
    margin: 0;
}
.pagination-controls.shared[b-12py6ntwgy] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
/* _content/MIRA/Components/Pages/ConsultPages/SampleModal.razor.rz.scp.css */
#sample-modal[b-pa0yvroljg] {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px; 
    height: 100vh;
    background-color: #f3f3f3;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    z-index: 1055;
    display: flex;
    flex-direction: column;
}

    #sample-modal .modal-dialog[b-pa0yvroljg] {
        margin: 0;
        height: 100%;
    }

    #sample-modal .modal-content[b-pa0yvroljg] {
        flex: 1;
        overflow-y: auto; 
        overflow-x: auto; 
        max-height: 100vh;
        padding: 10px;
        border-radius: 8px;
    }


#sample-modal.modal.show[b-pa0yvroljg] {
    display: block; 
}

.sample-image-grid[b-pa0yvroljg] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.fa-images[b-pa0yvroljg] {
    font-size: 30px;
    color: #154A38;
}
.fa-plus[b-pa0yvroljg] {
    font-size: 20px;
}
/* Style for each image */
.image-item[b-pa0yvroljg] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background-color: #d7d6d6;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.image-item:hover[b-pa0yvroljg] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Image icons */
.expand-icon[b-pa0yvroljg] {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    padding: 5px;
    cursor: pointer;
    font-size: 16px;
}
.expand-icon button[b-pa0yvroljg] {
    border-color: transparent;
    border-radius: 8px;
    background-color: #f6f6f6;
    color: white;
    transition: box-shadow 0.2s ease;
}
.expand-icon i[b-pa0yvroljg] {
    color: #c8c8c8;
}
.expand-icon button:hover[b-pa0yvroljg] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.trash-icon[b-pa0yvroljg] {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: none;
    cursor: pointer;
    font-size: 16px;
}
.trash-icon i[b-pa0yvroljg] {
    color: #c8c8c8;
}
.trash-icon button[b-pa0yvroljg] {
    border-color: transparent;
    border-radius: 8px;
    background-color: #f6f6f6;
    color: white;
    transition: box-shadow 0.2s ease;
}
.trash-icon button:hover[b-pa0yvroljg] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.hidden[b-pa0yvroljg] {
    display: none;
}

.visible[b-pa0yvroljg] {
    display: block;
    animation: fadeIn-b-pa0yvroljg 0.3s ease-in-out;
}

@keyframes fadeIn-b-pa0yvroljg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.underline[b-pa0yvroljg] {
    border-bottom: 2px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

/* Sample image preview */
.image-preview-modal[b-pa0yvroljg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.image-preview-content[b-pa0yvroljg] {
    position: relative;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.close-preview[b-pa0yvroljg] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.close-preview:hover[b-pa0yvroljg] {
    background: rgba(0, 0, 0, 0.8);
}

/* update sample form styling */
.floating-update-form[b-pa0yvroljg] {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    background: #f4f4f4;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1080;
}

@media (max-width: 768px) {
    #sample-modal[b-pa0yvroljg] {
        top: 5%;
        right: 5px;
        width: 90vw; /* Better fit on small screens */
        max-height: none;
        height: auto;
        overflow: visible;
    }
}
/* _content/MIRA/Components/Pages/ConsultPages/SampleModalComponents/SampleAnalysisSection.razor.rz.scp.css */
/* Underline for headings and content in Analysis section */
.underline[b-4vyiho0ik4] {
    border-bottom: 2px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

/* Optional: spacing inside the section */
.sample-analysis-section[b-4vyiho0ik4] {
    margin-top: 10px;
}
/* _content/MIRA/Components/Pages/ConsultPages/SampleModalComponents/SampleDescriptionSection.razor.rz.scp.css */
.sample-description-section[b-w2w8g3o98z] {
    width: 100%;
}

/* underline border below each section */
.sample-description-section .underline[b-w2w8g3o98z] {
    border-bottom: 2px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.sample-description-header h5[b-w2w8g3o98z] {
    margin: 0;
    font-weight: 600;
    color: #333;
}


.sample-description-body[b-w2w8g3o98z] {
    padding: 6px 0;
}

.sample-description-body p[b-w2w8g3o98z] {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

.edit-btn[b-w2w8g3o98z] {
    color: var(--secondary-color);
    border: none;
    background-color: white;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    padding: 4px 8px;
}
.edit-btn:hover[b-w2w8g3o98z] {
    background-color: #cdcdcd;
    color: white;
}
/* _content/MIRA/Components/Pages/ConsultPages/SampleModalComponents/SampleImagesSection.razor.rz.scp.css */
.sample-images-section[b-8g5qyyzxdo] {
    width: 100%;
}

    .sample-images-section .underline[b-8g5qyyzxdo] {
        border-bottom: 2px solid #ccc;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

.sample-image-grid[b-8g5qyyzxdo] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.image-item[b-8g5qyyzxdo] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background-color: #d7d6d6;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

    .image-item:hover[b-8g5qyyzxdo] {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

.expand-icon[b-8g5qyyzxdo], .trash-icon[b-8g5qyyzxdo] {
    position: absolute;
    font-size: 16px;
}

.expand-icon[b-8g5qyyzxdo] {
    top: 5px;
    right: 5px;
}

.trash-icon[b-8g5qyyzxdo] {
    bottom: 5px;
    left: 5px;
}

    .expand-icon button[b-8g5qyyzxdo], .trash-icon button[b-8g5qyyzxdo] {
        border: none;
        border-radius: 8px;
        background-color: #f6f6f6;
        color: white;
        padding: 5px;
        transition: box-shadow 0.2s ease;
    }

    .expand-icon i[b-8g5qyyzxdo], .trash-icon i[b-8g5qyyzxdo] {
        color: #c8c8c8;
    }

    .expand-icon button:hover[b-8g5qyyzxdo], .trash-icon button:hover[b-8g5qyyzxdo] {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
/* _content/MIRA/Components/Pages/ConsultPages/SampleModalComponents/SampleModalHeader.razor.rz.scp.css */
.sample-modal-header[b-6w3j7ni0bx] {
    padding-bottom: 8px;
    margin-bottom: 8px;
}

    .sample-modal-header .modal-title[b-6w3j7ni0bx] {
        margin: 0;
        font-size: 1.125rem;
        font-weight: 600;
    }

    .sample-modal-header .exit-btn[b-6w3j7ni0bx] {
        border: none;
        background: transparent;
        font-size: 1.1rem;
        cursor: pointer;
        color: #333;
    }

        .sample-modal-header .exit-btn:hover[b-6w3j7ni0bx] {
            color: #000;
        }

    .sample-modal-header p.mb-0[b-6w3j7ni0bx] {
        margin-bottom: 0;
        margin-right: 12px;
        font-size: 0.9rem;
    }
/* _content/MIRA/Components/Pages/ConsultPages/SampleStatistics.razor.rz.scp.css */
.sample-statistics-wrapper[b-343lep8shp] {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
    margin-bottom: 2rem;
    width: 100%;
    justify-content: space-around;
}

.sample-statistics-container[b-343lep8shp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sample-label[b-343lep8shp] {
    font-weight: 600;
    font-family: JetBrainsMono-medium;
    margin-bottom: 2.5rem;
    color: #214B41;
}

.circle[b-343lep8shp] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
}

.total-samples[b-343lep8shp] {
    background-color: #84ad86;
    border-radius: 50%
}

.total-hazardous-samples[b-343lep8shp] {
    border-radius: 50%;
    background-color: #be5b5bff;
}

.total-amount[b-343lep8shp] {
    position: absolute;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    background-color: white;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #214B41;
    font-size: 30px;
}

@media (max-width: 768px) {
    .sample-label[b-343lep8shp] {
        font-size: 14px; /* Adjust font size for small screens */
        text-align: center;
        width: auto; /* Adjust width on smaller screens */
    }
}
/* _content/MIRA/Components/Pages/ConsultPages/UserSettings.razor.rz.scp.css */
#logOut[b-t4isinm1iq] {
    text-decoration: none;
}
/* _content/MIRA/Components/Pages/ConsultPages/ViewCase.razor.rz.scp.css */
@font-face {
    font-family: "JetBrainsMono-medium";
    src: url('../fonts/JetBrainsMono-Medium.ttf')
}

.main-section[b-184g9rvk73] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.back-icon[b-184g9rvk73] {
    background-color: #6BAB8B;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
    transition: box-shadow 0.2s ease;
}

.back-icon i[b-184g9rvk73] {
    color: white;
}

.back-icon:hover[b-184g9rvk73] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#view-content-top-wrapper[b-184g9rvk73] {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    gap: 20px;
    padding-left: 100px;
    margin-bottom: 10px;
}

#view-content-top-wrapper h4[b-184g9rvk73] {
    font-family: JetBrainsMono-medium;
    margin: 0;
}

/* displays tabs, sidebar and plan-view in vh */
.content-wrapper[b-184g9rvk73] {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.content-with-sidebar[b-184g9rvk73] {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding-left: 20px;
}

.sidebar[b-184g9rvk73] {
    width: 60px;
    background-color: #ffffff;
    position: relative;
    border: 1px solid #808080;
    border-radius: 5px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.nav-links[b-184g9rvk73] {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.nav-links li[b-184g9rvk73] {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.nav-links li a[b-184g9rvk73] {
    color: #555;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover[b-184g9rvk73],
.nav-links li a:active[b-184g9rvk73],
.nav-links li a.active[b-184g9rvk73] {
    background-color: #b2b2b2;
    color: white;
}

/* Create plan form */
.floating-form[b-184g9rvk73] {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    background: #f4f4f4;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
}

/* Tab styling */
.plan-tabs[b-184g9rvk73] {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.tab-wrapper[b-184g9rvk73] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e8e8e8;
    border: 1px solid #ccc;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: "Arial", sans-serif;
    position: relative;
    padding: 0;
}

.tab-wrapper.active[b-184g9rvk73] {
    background: white;
    color: black;
    position: relative;
    z-index: 3;
}

.tab-button[b-184g9rvk73] {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    flex-grow: 1;
    text-align: left;
}

.tab-actions[b-184g9rvk73] {
    display: flex;
    gap: 5px;
    padding-right: 5px;
}

.btn-icon[b-184g9rvk73] {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.btn-icon i[b-184g9rvk73] {
    color: #555;
    transition: color 0.2s;
}

.btn-icon:hover i[b-184g9rvk73] {
    color: #000;
}

.btn-delete i[b-184g9rvk73] {
    color: var(--bs-danger);
}

.btn-edit i[b-184g9rvk73] {
    color: var(--bs-primary);
}

.tab-wrapper.active[b-184g9rvk73] {
    background: white;
    color: black;
    position: relative;
    z-index: 3;
}

#plan-view[b-184g9rvk73]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 1;
    pointer-events: none;
}

.tab-wrapper.active[b-184g9rvk73]::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    z-index: 4;
}

/* Plan images */
#plan-view[b-184g9rvk73] {
    border: 1px solid #ccc;
    border-top: none;
    display: flex;
    flex-direction: column;
    background-color: #e8e8e8;
    border-radius: 5px 0 5px 5px;
    overflow: hidden;
    flex-grow: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.plan-image-container[b-184g9rvk73] {
    border: 1px solid #ccc;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.plan-image-container:active[b-184g9rvk73] {
    cursor: grabbing;
}

#leaflet-map[b-184g9rvk73] {
    width: 100%;
    height: 100%;
    background-color: white;
}

.edit-delete-btn-container[b-184g9rvk73] {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 999; /* Ensure it appears above the map */
}

.edit-delete-btn[b-184g9rvk73] {
    padding: 10px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background-color 0.2s ease, transform 0.3s ease;
}

.edit-delete-btn:hover[b-184g9rvk73] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.edit-btn[b-184g9rvk73], .chevron-btn[b-184g9rvk73] {
    background-color: white;
    color: black;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.3s ease;
}

.edit-btn.active[b-184g9rvk73] {
    background-color: #b2b2b2;
}

.chevron-btn[b-184g9rvk73] {
    background-color: white;
    padding: 8px 12px;
}

.chevron-btn:hover[b-184g9rvk73], .edit-btn:hover[b-184g9rvk73] {
    background-color: #b2b2b2;
}

.modal[b-184g9rvk73] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1055;
    display: block;
    width: 400px;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
}

.modal.show[b-184g9rvk73] {
    display: block; /* Show the modal */
}

.explanations-components-wrapper[b-184g9rvk73] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Smartphones */
@media (max-width: 768px) {
    #view-content-top-wrapper[b-184g9rvk73] {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .sidebar[b-184g9rvk73] {
        padding-top: 10px;
    }
    .nav-links li[b-184g9rvk73] {
        margin-bottom: 5px;
    }
    .content-with-sidebar[b-184g9rvk73] {
        gap: 0;
        padding-left: 0;
    }
    .content-wrapper[b-184g9rvk73] {
        margin-left: 0.5rem;
    }
    .plan-tabs[b-184g9rvk73] {
        overflow:hidden;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .sidebar[b-184g9rvk73] {
        padding-top: 15px;
    }

    .nav-links li[b-184g9rvk73] {
        margin-bottom: 10px;
    }
    .content-with-sidebar[b-184g9rvk73] {
        gap: 10px;
        padding-left: 0;
    }
}
/* _content/MIRA/Components/Pages/Login.razor.rz.scp.css */

#login[b-1835b64e8u] {
    padding-top: 4rem;
    padding: 2rem;
    padding-left: 20rem;
    padding-right: 20rem;
}

#login h1[b-1835b64e8u] {
    text-align: center;
}

.btn-login[b-1835b64e8u] {
    color: #fff;
    background-color: #154A38;
    border-color: #154A38;
    border-style: solid;
    border-radius: 10px;
    height: 2.8rem;
    width: 100%;
    line-height: 1.8rem;
    padding: 0 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: JetBrainsMono-regular;
    font-size: large;
    transition: box-shadow 0.2s ease;
}

.btn-login:hover[b-1835b64e8u] {
    background-color: #0b3023;
    border-color: #0b3023;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.btn-login:focus[b-1835b64e8u] {
    outline: none;
    box-shadow: none;
}

.btn-login-container[b-1835b64e8u] {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Smartphones */
@media (max-width: 768px) {
    #login[b-1835b64e8u] {
        padding-top: 4rem;
        padding: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    #login[b-1835b64e8u] {
        padding-top: 4rem;
        padding: 2rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
/* _content/MIRA/Components/Pages/Register.razor.rz.scp.css */
.register-container[b-yu7tuwbu0y] {
    margin: 2rem 10rem 2rem 10rem;
}
.password-toggle[b-yu7tuwbu0y] {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: inherit;
    text-decoration: none;
    line-height: 1;
}
.password-field[b-yu7tuwbu0y] {
    position: relative;
}


/* ensure input text doesn't sit under the icon (Bootstrap utility already added) */
.password-field .form-control.pe-5[b-yu7tuwbu0y] {
    padding-right: 3rem;
}

/* optional: remove hover underline from the link-style button */
.password-toggle:hover[b-yu7tuwbu0y] {
    text-decoration: none;
}
