﻿
.dialogViewBody {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dialogViewHeader {
    display: flex;
    flex-grow: 0;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding-left: 10px;
    padding-right: 10px;
    border-top: 12px solid var(--border_color_red);
    /*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);*/
    /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);*/
    /*-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);*/
}

.dialogViewContent {
    flex-grow: 1;
    padding: 10px;
    max-height: 86%;
    overflow-y: auto;
}

    .dialogViewContent.centered {
        display: flex;
        justify-content: center;
        /*align-items: center;*/
    }


.typeButton {
    /*border: 2px solid gray;*/
    background-color: whitesmoke;
    width: 250px;
    height: 200px;
    align-items: start;
    justify-content: start;
}

    .typeButton.selected {
        /*border: 2px solid #5865F2;*/
        background-color: #5865F2;
    }

.typeButtonSmall {
    /*border: 2px solid gray;*/
    background-color: whitesmoke;
    align-items: start;
    justify-content: start;
}

.mud-button-label {
    height: 100% !important;
}

.dialogViewFooter {
    position: relative;
    display: flex;
    /*flex-grow: 1;*/
    justify-content: end;
    align-items: center;
    padding: 18px;
    /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);*/
    /*-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);*/
    /*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);*/
}

.dialogViewFooterStretch {
    position: relative;
    display: flex;
    /*flex-grow: 1;*/
    justify-content: end;
    align-items: center;
    padding: 18px;
    /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);*/
    /*-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);*/
    /*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);*/
}

/* Document Upload Component*/
.tableInputContainer {
    position: relative;
}

    .tableInputContainer .mud-input-control {
        position: static !important;
    }

        .tableInputContainer .mud-input-control > .mud-input-control-input-container {
            position: static !important;
        }

.tableUploadInput {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 10;
    opacity: 0;
}