/*
    ISEI APPLICATION STYLES
    
    Dev Note:
    This stylesheet provides ONLY application base styles. DO NOT place
    branding-related styling in this sheet.

    TABLE OF CONTENTS:
    ==================
    i)  @import fonts
    ii) Grid System Modifications
    iii) Print Layout

    1)  App-Wide Elements (body, h1, p, etc)
    2)  App-Wide Classes
    3)  Mud Modifications
    4)  Site Header

    10) Assessment/Participant Cards
    11) Manage Invitations Dialog
    12) Add/Edit Project Dialog
    13) FAQs Page
    14) Purchase Page

    20) Data Display Elements (charts, sparklines, etc)
    21) DDE Info Pill
    22) DDE Horizontal Bar Chart
*/


/* #region iii (Print Layout) */
@media print {
    header.mud-appbar,
    aside.mud-drawer {
        display: none;
    }

    div.mud-main-content {
        margin: 0 !important;
        padding: 0 !important;
    }

    .noPrint {
        visibility: hidden;
    }
}

/* #endregion */

/* #region 1 (App-Wide Elements) */


/* #endregion */

/* #region 2 (App-Wide Classes) */
.dialogFilterInput {
    margin-top: -25px;
}

.wrapAnywhere {
    overflow-wrap: anywhere;
}
/* #endregion */

/* #region 3 (Mud Modifications) */
.mud-nav-link .mud-nav-link-text {
    /*margin-left: 16px;
    margin-inline-start: 16px;*/
    white-space: nowrap;
}

.mud-card-header {
    overflow-wrap: anywhere;
}

.mud-dialog-title {
    overflow-wrap: anywhere;
}

.mud-dialog-content {
    display: flex !important;
    flex-direction: column;
}

.mud-dialog-content .mud-pagination {
    align-self: flex-end;
    padding-top: 20px;
    margin-top: auto;
}

.noCreditOverlay {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    border: thin solid #eee;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold !important;
}

.mud-card-header {
    padding-bottom: 5px;
    border-bottom: 1px solid lightgray;
}

.mud-card-header h6 {
    line-height: 1.2;
}

.mud-card-header h6.mud-typography-subtitle2
{
    margin-top: 5px;
    color: gray;
    font-weight: normal;
}

.mud-card-header-actions {
    align-self: center !important;
}
/* #endregion */

/* #region 4 (Site Header) */

.headerLogo {
    margin: 0 15px 0 5px;
    max-height: 85%;
}

/* #endregion */

/* #region 20 (Data Display Elements) */
/* 
    DDE Colors:
    blue: 0d6efd
    purple: 6f42c1
    red: dc3545
    orange: fd7e14
    yellow: ffc107
    green: 198754
    gray: adb5bd
*/

.ddeBlue {
    background: #0d6efd;
}

.ddePurple {
    background: #6f42c1;
}

.ddeRed {
    background: #dc3545;
}

.ddeOrange {
    background: #fd7e14;
}

.ddeYellow {
    background: #ffc107;
}

.ddeGreen {
    background: #198754;
}

.ddeGray {
    background: #adb5bd;
}

.ddeBlueText {
    color: #0d6efd;
}

.ddePurpleText {
    color: #6f42c1;
}

.ddeRedText {
    color: #dc3545;
}

.ddeOrangeText {
    color: #fd7e14;
}

.ddeYellowText {
    color: #ffc107;
}

.ddeGreenText {
    color: #198754;
}

.ddeGrayText {
    color: #adb5bd;
}
/* #endregion */

/* #region 21 (DDE Info Pill) */
.ddePill {
    display: block;
    float: right;
    margin: 0 10px auto 10px;
    padding: 7px 15px;
    background: #e1e2e1;
    border-radius: 30px;
    font-size: 0.5em;
}
/* #endregion */

/* #region 22 (DDE Horizontal Bar Chart) */

.ddeHBC {
    display: flex;
}

.ddeHBCBar {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

    .ddeHBCBar > div {
        height: 15px;
    }

.ddeHBCValue {
    white-space: nowrap;
    padding-left: 15px;
}
/* #endregion */

/* #region 10 (Assessment/Participant Cards) */
.assessmentCardHolder {
    display: flex;
}

.assessmentCard {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .assessmentCard .mud-card-header {
        padding: 0;
        text-align: center;
        box-shadow: 0 0 5px gray;
    }

    .assessmentCard h6 {
        font-weight: bold;
        text-transform: uppercase;
    }

    .assessmentCard .Completed {
        background: #198754;
        color: white;
    }

    .assessmentCard .Started {
        background: #ffc107;
        color: #222222;
    }

    .assessmentCard .Inactive,
    .assessmentCard .InvitationSent,
    .assessmentCard .Accepted {
        background: #333333;
        color: white;
    }

    .assessmentCard .profileName {
        font-weight: bold;
    }

    .assessmentCard .projectName {
        font-size: 0.95em;
    }

    /* Participant Card Specific */
    .assessmentCard .score {
        font-weight: normal;
        background: #e1e2e1;
        color: black;
        z-index: 1;
        padding: 5px;
    }

    .assessmentCard .scoreLabel {
        font-size: 0.9em;
        margin-bottom: -4px !important;
    }

    .assessmentCard .scoreValue {
        font-size: 1.7em;
    }
/* #endregion */

/* #region 11 (Manage Invitations Dialog) */

.mi .manageInviteSection {
    border: thin solid gray;
    border-radius: 10px;
    padding: 35px;
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .mi .manageInviteSection > .mud-input-control {
        flex: unset;
    }

.mi .addSingleUser {
    display: flex;
    flex-wrap: wrap;
}

    .mi .addSingleUser .fname,
    .mi .addSingleUser .lname {
        flex-basis: 50%;
    }

    .mi .addSingleUser .email,
    .mi .addSingleUser .submit {
        width: 100%;
    }

    .mi .addSingleUser .submit {
        margin-top: 15px;
    }


.mi .inviteBox {
    background: #efefef;
    padding: 5px 30px 30px;
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.mi .shareViaLink {
    display: flex;
}

.mi .linkInput .mud-input,
.mi .linkInput input {
    color: #333333 !important;
    margin-top: 0 !important;
}

.mi .existingInvitationList {
    overflow-y: auto;
}

.mi .existingInvitation {
    border: thin solid lightgray;
    margin-top: 5px;
    padding: 15px;
}

    .mi .existingInvitation .actions {
        display: flex;
        align-items: center;
    }

        .mi .existingInvitation .actions button {
            margin: 0 5px
        }

    .mi .noCreditOverlay > span {
        font-size: 1.5em;
    }
/* #endregion */

/* #region 12 (Add/Edit Project Dialog) */
.ep {
    padding: 20px;
}

.epForm {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 15px
}

.epForm > div {
    width: 100%;
}

/* #endregion */

/* #region 13 (FAQs Page) */
.faqs h2 {
    font-size: 28px;
    text-decoration: underline;
    font-weight: bold;
}

.faqs h3 {
    font-size: 16px !important;
    margin-top: 20px;
}

.faqs p {
    margin-left: 20px;
}

.faqs ul {
    list-style: disc;
    margin-left: 20px;
}

.faqs ul li {
    padding-left: 10px;
}

.faqs a {
    text-decoration: underline;
    color: #0000EE;  /* TODO: CONSIDER INTEGRATING w/ BRANDING */
}

.faqSection {
    margin-bottom: 30px;
    box-shadow: none;
}


/* #endregion */

/* #region 14 (Purchase Page) */
.hidden {
    display: none;
}

.purchaseTotalBox {
    border-top: 2px solid black;
    margin-top: 15px;
    margin-bottom: 15px;
}

.purchaseDiscount {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 5px 0;
    color: #dc3545;
    font-weight: bold;
}

.purchaseTotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.5em;
    font-weight: bold;
}

.paymentConfirmationNumber {
    font-size: 0.9em;
    margin-top: 10px;
    color: gray;
}

    .paymentConfirmationNumber span {
        font-style: italic;
    }


/* #endregion */

/* =================== OLD STUFF TO REVIEW & CLEAN UP =======================*/
/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    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 {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }
*/



.reviewRespondents ul {
    list-style: disc;
    margin-left: 20px;
}

.reviewRespondents ul li {
    padding-left: 10px;
}
