 .dropzone {
    border: 5px dashed #646464;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border 0.3s ease;
}

.dropzone::before {
    content: "Glissez-déposez ou cliquez pour choisir un fichier";
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #252525;
    white-space: pre-line;
    /* This allows for line breaks in the content */
}

.dropzone:hover {
    border-color: #555;
}