.custom-file-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px dashed #ccc;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #999;
    margin: 0.5rem 0;
    white-space: normal;
}
    .custom-file-container > div {
        word-break: break-all;
        flex: 1;
        margin-inline-end: 1rem;
    }
    .custom-file-container.active {
        border: 3px dashed #4BB543;
        background-color: #caf9c7;
        color: #4BB543;
        font-size: 1.2rem;
        font-weight: bold;
    }
.custom-file-button {
    color:white;
    background-color: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 6px;
    padding: 3px 7px;
    margin:3px;
}

.custom-file-container input[type="file"] {
    display: none;
}