/* Bouton personnalisé pour choisir le fichier */
.btn-uni.btn-file {
    display: inline-block;
    padding: 0.5rem 1rem;          
    background-color: #007bff;     
    color: #fff;                   
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    border: none;
    transition: background-color 0.3s;
    user-select: none;
    margin-top: 5px;
}

.btn-uni.btn-file:hover {
    background-color: #0056b3;     
}

/* Nom du fichier sélectionné */
.file-name {
    display: block;                
    margin-top: 5px;               
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
}
