﻿html {
    font-size: 16px;
}
body {
    background-color: #E8EAF6;
    background-image: url("../images/bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh; /* fallback */
    min-height: 100dvh; /* mobile moderno (Safari/Chrome) */
}


:root {
    --ugly-selection-back-color: #EAEBF6; /*#DCEDC8; /*#E0F2F1; */
    --rz-text-color: #000000;
    --rz-primary: #000000;
}

.mud-input,
.mud-input-control > .mud-input-control-input-container {
    font-weight: 500;
    color: #454242;
}

.mud-table {
    padding-left: 10px;
    padding-right: 10px;
}

.appBar {
    background: #6C70DC; /*url("../images/appbar.png") no-repeat;*/
    background-size: cover;
    color: whitesmoke;
    border-bottom: solid 1px #4145BD;
}

.hdList {
    background: #6C70DC; /* url("../images/hList.png") no-repeat;*/
    background-size: cover;
    color: whitesmoke;
    border-left: 1px solid #9FA8DA;
    border-right: 1px solid #9FA8DA;
    border-top: 1px solid #9FA8DA;
}

.hdEdit {
    background: #6C70DC; /* url("../images/hEdit.png") no-repeat;*/
    background-size: cover;
    color: whitesmoke
}

.borderList {
    border-left: 1px solid #9FA8DA;
    border-right: 1px solid #9FA8DA;
    border-bottom: 1px solid #9FA8DA;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.bottomSpace {
    padding-bottom: 40px;
}

.borderRLList {
    border-left: 1px solid #EFEFEF;
    border-right: 1px solid #EFEFEF;
    border-bottom: 1px solid #EFEFEF;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

tr.selected-row td {
    background-color: var(--ugly-selection-back-color);
    font-weight: 500;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.mud-table-cell-custom-group {
    font-weight: 500;
}

.mud-table-header .mud-table-cell {
    padding: 5px;
    background-color: white !important;
    font-weight: 900;
    border-bottom: solid 1px #EAEBEB !important;
}

.mud-table-cell-custom-group-footer {
    border-top: thin 1px #CCCCCC !important;
    text-align: right;
}

.page-height {
    min-height: calc(100vh - 20rem);
    max-height: calc(100vh - 20rem);
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
