﻿/* Body Styles */
body {
    padding-bottom: 0;
}

/* Loading Image */
#loading-img-wrapper {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #loading-img-wrapper > img {
        width: 250px;
        height: auto;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* App Layout */
#app {
    height: 100%;
}

main {
    height: unset !important;
    overflow-x: unset;
}

.small-input-text .mud-input > input.mud-input-slot {
    font-size: 12px;
    height: 0px;
    padding: 15px;
}

.mud-input > input.mud-input-root {
    font-size: 12px;

}

.small-date-picker .mud-picker {
    font-size: 12px; /* Imposta il font-size a 12px per il contenuto interno */

}

.small-date-picker input {
    font-size: 12px; /* Imposta il font-size a 12px per l'input field */

}

.small-date-picker .mud-input {
    font-size: 12px; /* Font-size per i campi input */
    min-width: 150px;
}


.small-select .mud-select{
    font-size:12px;

}
.small-select input {
    font-size: 12px; /* Imposta il font-size a 12px per l'input field */
}

.small-select .mud-input {
    font-size: 14px;
    min-width: 120px;
}

.mud-table-cell {
    font-size: 0.95rem !important;
}

.main-app-bar {
    border-bottom: 5px solid #FF6600 !important;
}

.type-column {
    min-width: 150px;
}


.mud-table-root .mud-table-head .mud-table-row .mud-table-cell {
    background-color: var(--mud-palette-primary);
    color: #fff !important;
}

.mud-table-root .mud-table-sort-label:hover {
    color: #fff !important;
    font-weight: 700 !important;
}