@import url('open.iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
}

.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;
    }


.headerPage {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2F53A2;
    height: 70px;
    margin-bottom: 35px;
}

    .headerPage h3 {
        margin: 0;
        color: #FFFFFF;
        font-size: 2rem;
    }

.loadingIndicatorContainer {
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loadingIndicator {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari  */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.searchContainer {
    background-color: #2F53A2;
    margin: 15px 0;
    border: 1px solid;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    padding: 10px;
    margin-bottom: 40px;
    position: relative;
}

.position-right {
    position: absolute;
    right: 0;
    /* You can adjust top, bottom, and other properties to fine-tune the position if needed */
}

.dataContainer {
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    padding: 10px;
}

.searchBoxContainer {
    margin-bottom: 10px;
}

.gridTextboxSearchBorder {
    border: 2px solid black;
}

.highlighted-item:hover, .highlighted-item:hover > td {
    background-color: #D3DAEB;
}

.dxGrid {
    height: 50vh;
}

.buttonOKCancel {
    height: 45px;
    font-size: 1.3rem;
    font-weight: 600;
}

.fontSizeHeader {
    font-size: 0.8rem;
    font-weight: 600;
}

.iconCheckedBox {
    font-size: 0.9rem;
    margin-right: 5px;
}

.btnHeaderSearch {
    margin: 0;
    padding: 0;
    padding: 0 7px;
}