/* /Components/CookieNotice.razor.rz.scp.css */
.cookie-notice[b-h7ccdx6yps] {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 33%;
    min-width: 300px;
    background-color: #131f34; /* asphalt400 */
    text-align: center;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.cookie-content[b-h7ccdx6yps] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Handle small viewports differently. */
@media (max-width: 768px) {
    .cookie-notice[b-h7ccdx6yps] {
        width: 90%;
        min-width: unset;
        bottom: 10px;
    }
}
/* /Components/ModalDialog.razor.rz.scp.css */
.modal-backdrop[b-6u5m3zciel] {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal[b-6u5m3zciel] {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1d2b43;
    width: 800px;
    max-height: 600px;
    overflow-y: auto;
}

.modal-header[b-6u5m3zciel] {
    padding: 50px 0 0 50px;
    margin-bottom: 20px;
    font-size: 21px;
}

.modal-close-button[b-6u5m3zciel] {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    background-image: url('images/close.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    min-width: 16px;
    height: 16px;
}

    .modal-close-button:hover[b-6u5m3zciel] {
        opacity: 0.7;
    }

.modal-body[b-6u5m3zciel] {
    padding: 0 75px 100px 50px;
}

.modal-buttons[b-6u5m3zciel] {
    position: absolute;
    bottom: 50px;
    right: 75px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
}
/* /Layout/TopBanner.razor.rz.scp.css */
.top-banner[b-au46yxgkx9] {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #071326;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    margin: 0px;
    font-size: 1.2em;
    z-index: 1000; /* Ensure the banner stays above other elements */
}

.banner-left[b-au46yxgkx9] {
    display: flex;
    align-items: center;
}

.banner-logo[b-au46yxgkx9] {
    width: 100px;
    height: 1.0em;
}

.subtitle[b-au46yxgkx9] {
    font-size: 0.8em;
    color: #bbb;
    margin-left: 10px;
}

.banner-right[b-au46yxgkx9] {
    display: flex;
    align-items: center;
    gap: 15px; /* Spacing between icons */
}

.user-info[b-au46yxgkx9] {
    display: flex;
    align-items: center;
    font-size: 0.8em;
}

/* Menu Button (Three Dots) */
.menu-button[b-au46yxgkx9] {
    background: none;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    justify-content: center;
    margin-bottom: 0;
    min-width: 50px;
}

/* Menu Wrapper */
.menu-wrapper[b-au46yxgkx9] {
    position: relative;
    display: flex;
    align-items: center;
}


/* Dropdown Menu */
.dropdown-menu[b-au46yxgkx9] {
    font-size: 0.8em;
    position: absolute;
    top: 30px;
    right: 0;
    background-color: #071326;
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 100px;
    width: max-content;
    padding: 0 10px 10px 10px;
}


.dropdown-item[b-au46yxgkx9] {
    background: none;
    color: white;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s; 
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

    .dropdown-item:hover[b-au46yxgkx9] {
        background-color: #2b3449;
    }

/* When dropdown is active */
.menu-wrapper.active .dropdown-menu[b-au46yxgkx9] {
    display: block;
}

.trusted-device-token[b-au46yxgkx9] {
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.trusted-devices-header[b-au46yxgkx9] {
    text-align: left;
    margin: 20px 10px 0px 10px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #3a4a5c;
    align-items: center;
}

.trusted-devices-list[b-au46yxgkx9] {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 5px 5px;
    margin: 0px 6px 6px 12px;
    align-items: center;
}

.trusted-device-row[b-au46yxgkx9] {
    display: contents; 
}

.remove-device-button[b-au46yxgkx9] {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-left: 0px;
}

.menu-separator[b-au46yxgkx9] {
    border-top: 1px solid #3a4a5c;
    margin: 10px 0;
}

.about-link[b-au46yxgkx9] {
    padding: 3px 5px;
    text-decoration: none;
    display: block;
    text-align: left;
    margin: 0;
}

.about-link:hover[b-au46yxgkx9] {
    background-color: #2b3449;
}
/* /Pages/About.razor.rz.scp.css */
.main-content-wrapper[b-cauwfjqkgc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    max-width: 1000px;
    padding: 20px;
    width: 100%;
}

.about-header[b-cauwfjqkgc] {
    width: 100%;
    max-width: 1000px;
    margin: 10px 0 20px 0;
    font-size: 21px;
    font-weight: 300;
}

.about-header h1[b-cauwfjqkgc] {
    color: #ffffffe6;
    margin: 0;
    font-size: 21px;
    font-weight: 300;
}

.about-content[b-cauwfjqkgc] {
    background-color: #1d2b43;
    margin: 20px 0;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
}

.about-content h2[b-cauwfjqkgc] {
    color: lightgray;
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 1;
}

.info-grid[b-cauwfjqkgc] {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 12px 20px;
    margin-bottom: 20px;
    align-items: start;
}

.info-label[b-cauwfjqkgc] {
    font-weight: 600;
}

.info-label[b-cauwfjqkgc],
.info-value[b-cauwfjqkgc],
.representatives p[b-cauwfjqkgc],
.legal-content p[b-cauwfjqkgc] {
    color: #ffffffe6;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-value a[b-cauwfjqkgc],
.legal-content a[b-cauwfjqkgc] {
    color: #66b3ff;
    text-decoration: none;
}

.info-value a:hover[b-cauwfjqkgc],
.legal-content a:hover[b-cauwfjqkgc] {
    text-decoration: underline;
}

.representatives[b-cauwfjqkgc],
.legal-content[b-cauwfjqkgc] {
    margin: 15px 0 20px 0;
}

.representatives p[b-cauwfjqkgc] {
    margin: 0 0 20px 0;
}

.legal-content p[b-cauwfjqkgc] {
    margin: 0 0 15px 0;
}

.representatives strong[b-cauwfjqkgc] {
    font-weight: 600;
}
/* /Pages/Help.razor.rz.scp.css */
.help-content-wrapper[b-17bdrikbpy] {
    display: grid;
    margin: 20px auto 20px auto;
    max-width: 1000px;
    padding: 20px;
}

.help-content[b-17bdrikbpy] {
    background-color: #1d2b43;
    margin: 20px auto 20px auto;
    display: block;
    padding: 20px;
    box-sizing: border-box;
}

.help-header[b-17bdrikbpy] {
    margin: 10px 0 20px 0;
    align-items: center;
    font-size: 21px;
    font-weight: 300;
}

.help-section-header[b-17bdrikbpy] {
    color: lightgray;
    margin: 0 0 20px 0;
    align-items: center;
    font-size: 20px;
    font-weight: 1;
}

.help-section-text[b-17bdrikbpy] {
    margin: 0 0 20px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
    .help-section-text a[b-17bdrikbpy] {
        color: #66b3ff;
        text-decoration: none;
    }
        .help-section-text a:hover[b-17bdrikbpy] {
            text-decoration: underline;
        }

.help-section-list[b-17bdrikbpy] {
    margin: 20px;
}

.help-warning[b-17bdrikbpy] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 20px 0;
}

.help-warning-icon[b-17bdrikbpy] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.help-warning .help-section-text[b-17bdrikbpy] {
    margin: 0;
}

.help-screenshot[b-17bdrikbpy] {
    display: block;
    max-width: 650px;
    width: 100%;
    height: auto;
    margin: 20px auto;
    border: 1px solid #5a7196;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
/* /Pages/Login.razor.rz.scp.css */
.logging-in-panel[b-5d03iuixnd] {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center; 
    width: 100%;
    margin-top: 20px;
}

.loading-dots[b-5d03iuixnd] {
    display: inline-block;
    width: 15px;
    text-align: left;
}

    .loading-dots[b-5d03iuixnd]::after {
        content: '';
        animation: dots-b-5d03iuixnd 1.5s steps(4, end) infinite;
    }

@keyframes dots-b-5d03iuixnd {
    0%   {content: '';}
    25%  {content: '.';}
    50%  {content: '..';}
    75%  {content: '...';}
    100% {content: '';}
}
/* /Pages/ProjectInfo.razor.rz.scp.css */
.project-information-grid[b-noxowqdj7f] {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 10px 70px;
    width: 100%;
    padding: 20px;
}

.cell[b-noxowqdj7f] {
    padding: 0px;
}

    .cell h3[b-noxowqdj7f] {
        /* override default h3 font properties */
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .cell p[b-noxowqdj7f] {
        color: #c9cdcf;
    }

.double-cell[b-noxowqdj7f] {
    grid-column: span 2;
}

.status-button[b-noxowqdj7f] {
    background-color: #3d70d399;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .status-button .info-icon[b-noxowqdj7f] {
        margin-left: 5px;
    }

.action-buttons[b-noxowqdj7f] {
    display: flex;
    align-items: flex-start;
    margin-left: 20px;
    margin-bottom: 20px;
}

.trash-button[b-noxowqdj7f] {
    background-color: transparent;
    background-image: url('images/trash.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    min-width: 16px;
    height: 16px;
}

    .trash-button:hover[b-noxowqdj7f] {
        opacity: 0.7;
    }

    .trash-button:disabled[b-noxowqdj7f] {
        opacity: 0.5;
    }

.icon-success[b-noxowqdj7f],
.icon-error[b-noxowqdj7f] {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
}

.icon-success[b-noxowqdj7f] {
    background-image: url('images/ok.svg');
}

.icon-error[b-noxowqdj7f] {
    background-image: url('images/error.svg');
}

.error-container[b-noxowqdj7f] {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
}

.uploaded-examinations-grid[b-noxowqdj7f] {
    display: grid;
    grid-template-columns: auto auto auto auto auto 45px;
    gap: 10px 70px;
    background-color: #131f34;
    margin: 20px 20px 0px 20px;
    padding: 0 10px 0 10px;
}

.patient-separator[b-noxowqdj7f] {
    grid-column: 1 / -1;
    height: 20px;
    background: #1d2b43;
    margin: 0px -10px 0px -10px; /* Offsets the extra padding in the uploaded-examinations-grid above. */
}

.exam-row[b-noxowqdj7f] {
    display: grid;
    grid-template-columns: subgrid; /* Should be supported on all major browsers. */
    grid-column: 1 / -1; /* Span all columns */
    margin: 0px -10px 0px -10px; /* Offsets the extra padding in the uploaded-examinations-grid above. */
    align-items: center;
    padding: 5px;
}

    .exam-row:hover[b-noxowqdj7f] {
        background: #24334A;
    }

.participant-panel-header[b-noxowqdj7f] {
    font-weight: 800;
    margin-bottom: 8px;
    align-self: start;
    margin: 10px 0 0 10px;
}

.participant-panel-value[b-noxowqdj7f] {
    align-self: start;
    margin: 0 0 0 10px;
}

.progress-panel[b-noxowqdj7f] {
    margin: 20px 20px 40px 20px;
}
/* /Pages/UploadFiles.razor.rz.scp.css */
.info-panel[b-jjgpdhgmhq] {
    margin: 10px;
}

.parsing-panel[b-jjgpdhgmhq] {
    display: grid;
    gap: 10px;
}

/* The dark blue grid in which patient cards are placed */
.patient-grid[b-jjgpdhgmhq] {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto 190px;
    align-items: center;
    gap: 5px 60px;
    background: #131f34;
    margin: 20px 20px 0px 20px;
    padding: 0 10px 0 10px;
}

.patient-separator[b-jjgpdhgmhq] {
    grid-column: 1 / -1;
    height: 20px;
    background: #1d2b43;
    margin: 0px -10px 0px -10px; /* Offsets the extra padding in the patient-grid above. */
}

.exam-row[b-jjgpdhgmhq] {
    display: grid;
    grid-template-columns: subgrid; /* Should be supported on all major browsers. */
    grid-column: 1 / -1; /* Span all columns */
    margin: 0px -10px 0px -10px; /* Offsets the extra padding in the patient-grid above. */
    align-items: center;
    padding: 5px;
}

    .exam-row:hover[b-jjgpdhgmhq] {
        background: #24334A;
    }

.patient-selection-instructions-text[b-jjgpdhgmhq] {
    margin-top: 20px;
    margin-left: 10px;
    margin-bottom: 40px;    
}

.patient-examinations-header[b-jjgpdhgmhq] {
    font-weight: 800;
    margin: 10px 0px 10px 0px;
}

.disabled-patient-examinations-header[b-jjgpdhgmhq] {
    margin: 10px 0px 10px 0px;
    opacity: 0.6;
    font-style: italic;
}

.patient-examinations-value[b-jjgpdhgmhq] {
    margin: 0px 0px 0px 0px;
}

.disabled-patient-examinations-value[b-jjgpdhgmhq] {
    margin: 0px 0px 0px 0px;
    opacity: 0.6;
    font-style: italic;
}

.patient-selection-container[b-jjgpdhgmhq] {
    margin-top: 0px;
}

.examination-selection-container[b-jjgpdhgmhq] {
    margin-top: 2px;
    display: flex;
    align-items: start;
}

.action-buttons-container[b-jjgpdhgmhq] {
    width: 100%;
    padding: 20px 0px 20px 0px;
    background: #131f34; /* asphalt400 */
}

.action-buttons[b-jjgpdhgmhq] {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.custom-checkbox[b-jjgpdhgmhq] {
    display: flex;
    align-items: center;
    margin: 0px 0px 0px 10px;
}

    .custom-checkbox input[type="checkbox"][b-jjgpdhgmhq] {
        display: none; /* Hides the default checkbox */
    }

.checkbox-image[b-jjgpdhgmhq] {
    display: flex;
    width: 18px;
    height: 18px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
}

.custom-checkbox input[type="checkbox"]:checked + span[b-jjgpdhgmhq] {
    background-image: url('images/checkbox-checked.24x24.dark.svg');
}

.custom-checkbox input[type="checkbox"]:not(:checked) + span[b-jjgpdhgmhq] {
    background-image: url('images/checkbox-unchecked.24x24.dark.svg');
}

.checkbox-label[b-jjgpdhgmhq] {
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    width: 70px;
    margin-left: 8px;
}

.patient-timepoint-container[b-jjgpdhgmhq] {
    display: flex;
    align-items: center;
}

.examination-timepoint-container[b-jjgpdhgmhq] {
    display: flex;
    align-items: center;
    margin-right: 20px;
    gap:5px;
}

.warning-triangle[b-jjgpdhgmhq] {
    background-image: url('images/warning.16x16.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
}

/* Custom Dropdown Styles */
.custom-dropdown-container[b-jjgpdhgmhq] {
    position: relative;
    display: inline-block;
}

.custom-dropdown-input[b-jjgpdhgmhq] {
    background-color: #020307;
    color: #ffffffe6;
    width: 160px;
    border: 1px solid #4a5568;
    padding: 5px;
    box-sizing: border-box;
    cursor: text;
}

    .custom-dropdown-input:focus[b-jjgpdhgmhq] {
        outline: none;
        border-color: #6b7280;
    }

    .custom-dropdown-input:disabled[b-jjgpdhgmhq] {
        color: #ffffff99;
        cursor: not-allowed;
        background-color: #0a0d14;
    }

.custom-dropdown-list[b-jjgpdhgmhq] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background-color: #020307;
    border: 1px solid #4a5568;
    margin-top: 1px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.custom-dropdown-item[b-jjgpdhgmhq] {
    padding: 8px 10px;
    cursor: pointer;
    color: #ffffffe6;
    transition: background-color 0.2s;
}

    .custom-dropdown-item:hover[b-jjgpdhgmhq] {
        background-color: #1a202c;
    }

    .custom-dropdown-item.highlighted[b-jjgpdhgmhq] {
        background-color: #2d3748;
        font-weight: 500;
    }

    .custom-dropdown-item.selected[b-jjgpdhgmhq] {
        background-color: #3b82f6;
        color: white;
    }

/* Scrollbar styling for dropdown */
.custom-dropdown-list[b-jjgpdhgmhq]::-webkit-scrollbar {
    width: 8px;
}

.custom-dropdown-list[b-jjgpdhgmhq]::-webkit-scrollbar-track {
    background: #1a202c;
}

.custom-dropdown-list[b-jjgpdhgmhq]::-webkit-scrollbar-thumb {
    background: #4a5568;
}

    .custom-dropdown-list[b-jjgpdhgmhq]::-webkit-scrollbar-thumb:hover {
        background: #6b7280;
    }
/* /Pages/VerifyCode.razor.rz.scp.css */
