.errore {
    display: flex;
    justify-content: center;
    align-items: center;
}

.errore p {
    font-size: large;
    color: red;
    text-transform: uppercase;
}

.targa {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 0;
    background-color: #ffffff;
    margin-bottom: 5vh;
    margin-top: 50px;
}

.targa-container {  
    width: 300px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 2px solid #000;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.targa-input {
    width: 82%;
    height: 80%;
    font-size: 38px;
    text-transform: uppercase;
    text-align: center;
    border: none;
    outline: none;
}

.blue-band {
    width: 18%;
    height: 100%;
    background-color: #0055A4;
}

.produttore {
    font-size: 4vh;
    display: flex;
    align-items: center;
}

.info-table {
    margin-top: 30px;
    border-collapse: collapse;
    width: 500px;
    text-align: left;
}

.info-table th,
.info-table td {
    border: none;
    padding: 10px;
}

.info-table th {
    background-color: #f2f2f2;
}

.info-label {
    font-weight: bold;
}

.info-fields {
    width: 35%;
    margin: auto;
    margin-top: 15px;
    border: 1px solid rgb(197, 191, 191);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

td {
    text-transform: uppercase;
}

.copy-icon {
    cursor: pointer; /* Cambia il cursore del mouse */
    transition: color 0.3s; /* Effetto di transizione per il colore */
}

.copy-icon:hover {
    color: rgb(3, 36, 249); /* Cambia il colore dell'icona durante l'hover */
}

.funzioni {
    border: 1px solid rgb(197, 191, 191);
    padding: 20px;
    border-radius: 10px;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    margin-top: 40px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info .contenuto {
    display: flex;
    align-items: center;
}

.info img {
    margin-right: 20px;
}

#fornitore {
    width: 200px;
}

#utente {
    width: 150px;
}

.info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    cursor: pointer;
}

.cella {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
}

.cella:hover {
    cursor: pointer;
}

.popup {
    display: none;
    position: absolute;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1;
}