﻿html {
    font-size: 16px;
}

body {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../images/bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.4; /* livello di opacità */
    z-index: -1;
}

: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 #3F51B5;
    border-right: 1px solid #3F51B5;
    border-top: 1px solid #3F51B5;
}

.hdEdit {
    background: #6C70DC; /* url("../images/hEdit.png") no-repeat;*/
    background-size: cover;
    color: whitesmoke
}

.borderList {
    border-left: 1px solid #3F51B5;
    border-right: 1px solid #3F51B5;
    border-bottom: 1px solid #3F51B5;
    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;
}

.docente {
    background-color: #00897B;
    color: white;
    width: 100%;
    height: 100%;
    min-height: 50px;
    padding-left: 20px;
    display: flex;
    align-items: center; /* allineamento verticale */
    justify-content: left;
    margin-bottom: 4px;
}
.lezione {
    background-color: #E0F2F1;
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center; /* allineamento verticale */
    justify-content: center;
}
.lezioneMC {
    background-color: #FFF9C4;
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center; /* allineamento verticale */
    justify-content: center;
}
.lezioneM {
    background-color: #DCEDC8;
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center; /* allineamento verticale */
    justify-content: center;
}
.ora {
    background-color: #B2DFDB;
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center; /* allineamento verticale */
    justify-content: center;
}
.intOrario {
    background-color: #B2DFDB;
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center; /* allineamento verticale */
    justify-content: center;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
