﻿.dynamic-box-title {
    font-size: 16px;
    font-weight: bold;
    color: black;
    margin-bottom: 1px;
    padding-bottom: 1px;
}




.utente:not(.filled) {
    background-color: white;
}
    .utente:not(.filled):focus {
        background-color: white;
    }


.utente.filled {
    background-color: whitesmoke;
}

    .utente.filled:focus {
        background-color: whitesmoke;
    }


.contatto:not(.filled) {
    background-color: mintcream;
}

    .contatto:not(.filled):focus {
        background-color: mintcream;
    }


.contatto.filled {
    background-color: mintcream;
}

    /* Campo pieno in focus */
    .contatto.filled:focus {
        background-color: mintcream;
    }


.recapito:not(.filled) {
    background-color: azure;
}

    /* Campo vuoto in focus */
    .recapito:not(.filled):focus {
        background-color: azure;
    }

/* Campo pieno */
.recapito.filled {
    background-color: azure;
}

    /* Campo pieno in focus */
    .recapito.filled:focus {
        background-color: azure;
    }

::placeholder {
    color: gray !important; /* scegli tu il colore */
    opacity: 1 !important; /* importante per Firefox */
}

.dynamic-box {
    background: #f8f9fa;
    border: 1px solid #d0d7de;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.dynamic-box-title {
    font-weight: 600;
    color: #445;
    margin-bottom: 10px;
}

.dynamic-box input:focus,
.dynamic-box select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 4px rgba(13,110,253,0.4);
}

.single-col {
    grid-template-columns: 1fr !important;
}