 
    .custom-file-upload {
    width: 100%;
    height: 250px;              /* Set the box height */
    border: 1px dashed #ccc;
    border-radius: 8px;
    overflow: hidden;           /* Prevent image from spilling out */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.custom-file-upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* Makes image fit nicely inside box */
}
