.btn_new_truck  {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


/* Stili generali per la tabella */
#trucksTable thead tr {
    background-color: #004085;
    color: #ffffff;
    text-align: left;
}

#trucksTable thead th {
    padding: 12px 15px;
    text-align: left;
}

#trucksTable tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd;
    text-align: left;
}

/* Stile per le righe della tabella al passaggio del mouse */
#trucksTable tbody tr:hover {
    background-color: #f2f2f2;
}

/* Stili per i pulsanti all'interno della tabella */
#trucksTable button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#trucksTable tbody tr td:last-child {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 15px;
    height: 100%;
}

#trucksTable button:hover {
    background-color: #0056b3;
}


/*Style for generic modal*/
#genericModal .modal-body {
    text-align: center;
}



/* Stile per migliorare la visualizzazione su dispositivi mobili */
@media screen and (max-width: 600px) {
    #trucksTable {
        width: 100%;
        display: block;
        overflow-x: auto;
    }

    #trucksTable thead, #trucksTable tbody, #trucksTable thead th {
        display: block;
    }

    #trucksTable tbody td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    #trucksTable tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}

