/* HEADER */
.header-page{
    width:100%;
    height: 120px;
    max-height: 120px;
    border-bottom: 2px solid #ebebeb;
}

.row-header{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.img_header{
    max-height:115px;
}

.link_pages{
    width: 70%;
}

ul{
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

a, a:visited{
    text-decoration: none;
    color: #13628C;
    font-size: 18px;
}


.tabella_tsa{
    overflow-y: auto;
    height: 500px;
}

.site{
    margin-left: 5%;
    margin-right: 5%;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
}

.title-body{
    padding: 50px;
    color: #13628C;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    height: auto;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.scrollbarTabella{
    width: 98%;
    height: 600px;
    margin-top: 240px;
    overflow-y: scroll;  
} 

table {
    width:100%;
    border-collapse: collapse;
} 

table thead{
    color: var(--dark-blue);
    background-color: #fff; 
    position: sticky;
    top: 0;   
}

th, td {  
    padding:10px 5px; 
    font-weight: 600;
}

tr {
    border-bottom:solid 1px rgb(241, 241, 241);
}

.centrato {
    text-align: center; 
}

.bodyPagina{
    display: flex;
    margin: 25px 20px;
}

.contenuto {
    display: flex; /* Utilizza flexbox per allineare gli elementi */
    align-items: center; /* Allinea verticalmente gli elementi al centro */
}

.testo {
    color: #000000;
    font-size: 20px;
    margin-left: 10px;
    width: 200px;
}

.contenuto select, .contenuto input[type="number"], .contenuto input[type="date"], .contenuto input[type="text"] {
    margin-left: 5px;
}

.inviaDocumenti {
    margin: 25px 20px 100px 20px;
}

.fwname, .origin {
    width: 500px;
}

.contenuto select {
    width: 250px;
}

.pref_vett {
    width: 50px;
}

.awb_num {
    width: 190px;
}

.messaggioAWB {
    color: red;
    font-weight: bold;
    margin-left: 5px;
}

/* // ------- SCROLLBAR----   */
/* width */
::-webkit-scrollbar {
    width: 7px;
}
    
/* Track */
::-webkit-scrollbar-track {
    background: lightgray;
}
    
/* Handle */
::-webkit-scrollbar-thumb {
    background: #13628C;
}
    
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: lightblue;
}

/* Sezione gestione caricamento files */
.container_file{
    padding: 10px;
    flex-direction: column;
    color: gray;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.div_container_file{
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

#iconContainer {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.file-icon {
    padding: 10px;                  /* Increased padding for a better look */
    font-size: 20px;                /* Font size */
    text-align: center;             /* Center text */
    background-color: #f9f9f9;      /* Light background color for the card */
    border: 1px solid #ddd;         /* Light border around the card */
    border-radius: 8px;             /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin: 5px;                    /* Margin between cards */
    transition: transform 0.2s;     /* Smooth transition for hover effect */
}

/* Optional: Hover effect */
.file-icon:hover {
    transform: scale(1.05);         /* Slightly enlarge the card on hover */
}