﻿

html {
    height: 100%;
    width: 100%;
    background: var(--gray-25, #FCFCFD);
    color: var(--gray-900, #101828);
    /* Text md/Normal */
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem; /* 150% */
}

body {
    height: 100%;
    width: 100%;
    background: var(--gray-25, #FCFCFD);
    color: var(--gray-900, #101828);
    /* Text md/Normal */
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem; /* 150% */
    display: flex;
    flex-direction: column;
}

    body > div {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%
    }

    body > label {
        margin-bottom: 0px;
    }

app {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}



content {
    overflow: hidden;
}


.flexFrame {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    /*overflow: hidden*/
}

.Frame {
    flex-grow: 1;
    overflow: auto;
}

.pagePadding {
    padding: 5px;
}

.contentscroller {
    overflow: auto;
    flex-grow: 1;
}





#blazor-error-ui {
    background: red;
    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;
    }


.blazored-modal {
    border: none;
    padding: 0px !important;
    max-width: none !important;
    /*width: 90vw;
    height: 90vh;*/
}

    .blazored-modal .blazored-modal-header {
        padding-bottom: 4px !important;
        padding-top: 3px !important;
        padding-left: 3px !important;
    }

    .blazored-modal .bm-header {
        padding: 2px;
        background: var(--bs-primary);
        color: white;
    }

        .blazored-modal .bm-header .bm-title {
            background: var(--bs-primary);
            color: white;
        }

    .blazored-modal .bm-content {
        padding: 10px;
        display: flex;
        overflow-y: auto;
        overflow-x: hidden;
        height: 100%;
        flex: 1;
    }

        .blazored-modal .bm-content .dialogContainer {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .blazored-modal .bm-content .dialogContent {
            display: flex;
            flex-direction: column;
            height: 100%;
            overflow: auto;
        }

        .blazored-modal .bm-content .dialogCommands {
            display: flex;
            justify-content: flex-end;
            margin-top: 12px;
        }

    .blazored-modal .blazored-modal-close {
        margin-right: -10px;
        margin-top: -20px;
    }

.bm-close {
    color: var(--bs-primary-color);
}





/* Bootstrap Default themen */



/* Standard Formular Style */

.formular {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: stretch;
    padding: 1rem;
}

.form-group-title {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: var(--base-black, #282828);
    /* Text md/Semibold */
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem; /* 150% */
}

.form-control {
    padding: 0.625rem 0.875rem;
    align-items: center;
    gap: 0.5rem;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 0.5rem;
    border: 1px solid var(--base-black, #000);
    background: var(--base-white, #FFF);
    color: var(--gray-900, #101828);
    /* Text md/Normal */
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem; /* 150% */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

    .form-control:focus-within {
        box-shadow: 0px 0px 0px 4px rgba(228, 254, 152, 0.50), 0px 1px 2px 0px rgba(227, 254, 153, 0.50);
    }

.form-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
    align-self: stretch;
    color: var(--gray-700, var(--gray-700, #344054));
    /* Text sm/Medium */
    font-family: Inter;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem; /* 142.857% */
}

.form-value {
    align-items: center;
    gap: 0.5rem;
    flex: 1 0 0;
    align-self: stretch;
    color: var(--base-black, var(--base-black, #000));
    /* Text md/Semibold */
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem; /* 150% */
}

.btnDefaults {
    width: 120px;
    padding: 0.75rem 1.25rem;
}

.btn {
    padding: 0.75rem 1.25rem;
}

.btn-black {
    color: var(--base-white, #FFF);
    fill: var(--base-white, #FFF);
    background: var(--base-black, #000);
}

.btn-gray {
    color: var(--base-black, #000);
    fill: var(--base-black, #000);
    border-radius: 0.25rem;
    border: 1px solid var(--gray-300, #D0D5DD);
    background: var(--gray-25, #FCFCFD);
}


.ActionButton {
    display: flex;
    padding: 0.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 1rem;
    border: 1px solid var(--grey-customized-grey-lighten-1, #D0D5DD);
    background: var(--grey-customized-grey-lighten-4, #F9FAFB);
}

    .ActionButton:hover {
        border-radius: 1rem;
        border: 1px solid var(--grey-customized-grey-lighten-1, #D0D5DD);
        background: var(--base-black, #000);
        /* Elevations/1 */
        box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.20);
        color: var(--primary-green-accent, #E4FE99);
        fill: var(--primary-green-accent, #E4FE99);
    }

/* Page Styles*/
.PageHeader {
    flex-grow: 0;
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--base-black, #000);
    /* Display xs/Semibold */
    font-family: Inter;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2rem; /* 133.333% */

    padding-top: 2rem;
}

    .PageHeader h1 {
        color: var(--base-black, var(--base-black, #000));
        font-family: Inter;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 600;
        line-height: 2rem; /* 133.333% */
    }

    .PageHeader h2 {
        color: var(--base-black, var(--base-black, #000));
        font-family: Inter;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 600;
        line-height: 2rem; /* 133.333% */
    }

    .PageHeader h3 {
        color: var(--base-black, var(--base-black, #000));
        font-family: Inter;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 600;
        line-height: 2rem; /* 133.333% */
    }



.PageFilter {
    flex-grow: 0;
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--base-black, #000);
    /* Display xs/Semibold */
    font-family: Inter;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2rem; /* 133.333% */
}

.PageFooter {
    flex-grow: 0;
    font-size: 10px;
    color: gray;
}


h1, h2, h3, h4 {
    color: var(--base-black, var(--base-black, #000));
    font-family: Inter;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2rem; /* 133.333% */
}


button.editFormConfirmButton {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.AdminBar {
    padding-top: 48px;
    padding-left: 48px;
    height: 100%;
}

.AdminActionBarContainer {
    position: absolute;
    top: 0px;
    left: 48px;
    display: flex;
    flex-direction: row;
    width: calc(100% - 48px);
}

.AppSideBarContainer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 48px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
