html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }

}
@page {
    size: A4;
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
}

table {
    width: 100% !important;
}


html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 20px;
    /*float:left;*/
}

#loadingSpinner {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#loadingSpinner .spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#mondettalogo {
    width:355px;
    height: auto;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Set the width to 100% to cover the entire viewport width */
    z-index: 1000; /* Adjust the z-index as needed to ensure it's displayed above other elements */
}
.nav-link {
    color: #000000 !important;
}

.table-container {
    float: left;
    min-width: 100%; 
}


@media print {
    .print-hidden {
        display: none !important;
    }

    body {
        margin: 0 0 0 0; /* Remove the top margin for printing */
        width: 100% !important;
    }

    table {
        width: 100% !important; /* Ensure tables take 100% width when printing */
    }

}
