﻿
body {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

page {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mud-table-pager {
    display: flex !important;
    flex-wrap: wrap; /* Permette al pager di andare a capo se lo schermo è stretto come quello del Moto G86 */
}

.pager-limit {
    max-width: 320px;
    overflow: hidden;
    white-space: wrap; /* evita che il testo allarghi il layout */
}

.mud-grid-spacing-xs-3 > .mud-grid-item {
    padding: 10px;
    .loader-mask

{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.mud-select-right .mud-input-root {
    flex-direction: row-reverse;
}

.select-right input {
    text-align: right;
}

.select-right .mud-list-item-text {
    text-align: right;
}

.mud-container {
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1px;
    padding-right: 1px;
}

.full-screen-container {
    /* Occupa l'intera altezza dinamica dello schermo */
    min-height: 100dvh;
    /* Gestisce il posizionamento dei componenti interni */
    display: flex;
    flex-direction: column;
    /* Evita scrollbar indesiderate se il contenuto ci sta a pennello */
    overflow-y: auto;
}

.mud-table-cell {
    max-width: 800px;
    overflow: hidden;
    text-overflow: ellipsis;
    align-content: flex-end;
    padding-right: 0;
    padding-inline-start: 2px;
    padding-inline-start: 2px;
}

.mud-table-pers {
    overflow: hidden;
    text-overflow: ellipsis;
    align-content: flex-end;
    padding-right: 0;
    padding-inline-start: 5px;
}

.ellipsis {
    max-width: 1000px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-inline-start: 5px;
}


.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: #00c9d0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

    .loader div {
        background-color: #00c9d0;
        display: inline-block;
        float: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
        height: 50px;
        opacity: 0.5;
        border-radius: 50%;
        -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
        animation: ballPulseDouble 2s ease-in-out infinite;
    }

    .loader div:last-child {
        -webkit-animation-delay: -1s;
        animation-delay: -1s;
    }


@-webkit-keyframes ballPulseDouble {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}