:root {
    --dark1: #394558;
}
html,
body {
    height: 100%;
    background-color: lightslategray;
    overflow: hidden;
    font-size: 14px;
}

#topbar {
    height: 50px;
    background-color: #7952b3;
    color: white;
}

#pageBody {
    padding: 15px;
    height: calc(100% - 80px);
}

#pageCard,
#pageCardBody {
    height: 100%;
}
#pageCard .card-header {
    color: var(--bs-warning);
}
#pageCardBody {
    overflow: auto;
}

.dropdown-menu i,
a i,
button i {
    padding-right: 5px;
}
.dropdown-menu-dark .dropdown-item {
    font-size: 16px;
}

/*modal close button*/
.btn-close {
    border: 2px solid white;
}

#pageBody>#pageCard {
    border: 0;
}
.card-header {
    background-color: var(--dark1);
    color: white;
}

.table th {
    background-color: var(--dark1);
    color: white;
}
.table-hover tr:hover,
.list-group-item-action:not(.active):focus,
.list-group-item-action:not(.active):hover {
    background-color: lightcyan;
}

.form-label,
.col-form-label{
    font-weight: bold;
}
label.required::after {
    content: " *";
    color: red;
    font-size: large;
    font-weight: bold;
}
.ajaxFormError {
    display: none;
}

.clickable {
    color: #0d6efd;
    cursor: pointer;
}
.clickable:hover {
    text-decoration: underline;
}
