table tr:hover {
    background-color: aliceblue !important;
}

img.center {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.well-slim {
    margin-bottom: 0;
    padding: 4px;
    border-radius: 3px;
}
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid, :invalid {
    outline: 1px solid red;
}

.validation-message, .tooltip-message {
    transform: translate(-50%, 0);
    padding: 10px 20px;
    color: maroon;
    background-color: white;
    font-weight: normal;
    font-size: 13px;
    border-radius: 8px;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
    box-shadow: 0 1px 10px rgba(0,0,0,0.5);
    display: none;
}

.validation-message::after, .tooltip-message::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    bottom: 100%;
    left: 70%;
    transform: translate(-50%,50%) rotate(45deg);
    background-color: white;
    box-shadow: -1px -1px 1px rgba(0,0,0,0.5);
}

.invalid:hover + .validation-message, .show-tooltip:hover > .tooltip-message {
    display: block;
}

#blazor-error-ui {
    color: white;
    background: red;
    bottom: 0;
    /*top: 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;
}

.row-selected {
    background-color: lavender!important;
}