body {
    height: 100vh;
}

#blazor-error-ui {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.75); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    text-align: center;
}

.io-toast-error{
    width: fit-content;
}

.blazor-error-ui-container{
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 999;
    top: 2rem;
    left: 50%;
    transform: translate(-50%, 0%);
}
.blazor-error-ui-toast{
    display: flex;
    position: relative;
    flex-direction: row;
    animation: fadein 1.5s;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    color: #1D1D1B;
    width: 25rem;
    border-radius: .25rem;
    box-shadow: rgba(0,0,0,0.30) 0px 10px 30px 2px;
    background-color: #fff;
    border-top: 6px solid var(--iocore-primary);
}

.blazor-error-ui-toast .blazor-error-ui-toast-message {
    flex-grow: 1;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.875rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.blazor-error-ui-toast .blazor-error-ui-toast-close {
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 0 0 0 1rem;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    color: #94a3b8;
    font-size: 0.9rem;
}

.blazor-error-ui-toast .blazor-error-ui-toast-close:hover {
    color: inherit;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*Hide the border of a input text box when not focused/active/hover*/
.dxbl-text-edit{
     border: solid 1px transparent; 
}

/*Show the border of a input text box when focused/active/hover*/
.modified.dxbl-text-edit{
    border-style: solid;
}
/*Show the border of the dropdown when focused/active/hover*/
.dxbl-text-edit:hover, .dxbl-text-edit:active, .dxbl-text-edit:focus{
    border-style: solid;
}
/*Hide the border of the internal dropdown button when not focused/active/hover*/
.dxbl-btn.dxbl-edit-btn-dropdown{
    border: solid 1px transparent;
}
/*Set trash icon color across the application*/
.fa-trash-can{
    color: var(--iocore-red);
}

/*Set de default placeholder text style and color*/
input::placeholder{
    font-style: italic;
    font-size: 15px;
    font-variant-ligatures: none;
    font-weight: 400;
    color:#999
}

/*Remove the green border/box-shadow when a input is modified/valid*/
.modified.dxbl-text-edit{
    border: solid 1px transparent;
    box-shadow: unset;
}

/*fixes the extra padding added by the invisible green checkmark that we dont show*/
.valid > div.dxbl-edit-validation-status{
    display: none !important;
}

/*Remove the green border/box-shadow when a input is modified/valid and replace it with the standard border*/
.dxbl-text-edit:focus-within, .dxbl-text-edit:hover, .dxbl-text-edit:active, .modified.dxbl-text-edit:focus-within, .modified.dxbl-text-edit:hover, .modified.dxbl-text-edit:active{
    border: solid 1px var(--bs-gray-300);
    box-shadow: unset;
}
/*Set the invalid input border for all but the checkbox*/
.invalid:not(.dxbl-checkbox){
    border: solid 1px var(--iocore-red) !important;
}

/*reconnection screen must be drawn on top of everything, default value set by blazor is 1050*/
#components-reconnect-modal{
    z-index: 11002 !important;
}

/** Labels are bit gray and smaller */
label {
    color: var(--bs-gray-700) !important;
    font-size: var(--io-font-size-13) !important;
}

.io-link-element{
    color: inherit;
    text-decoration: inherit;
}

.io-link-element:hover{
    color: inherit;
    text-decoration: inherit;
}

.io-tab {
    display:flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.dxbl-toast-portal .dxbl-toast .dxbl-toast-icon-column {
    display: flex;
    align-items: center;
}


.dxbl-toast-portal.dxbl-toast-portal.dxbl-toast-align-top.dxbl-toast-align-center.dxbl-toast-animation-slide
{
    min-width: 500px;
    max-width: 1000px;
}

.dxbl-toast-portal .dxbl-toast{
    --dxbl-toast-body-padding: 0 0.625rem 0 0.875rem;
}