.control-file {
    display: none !important;
}

.control-file+label {
    display: flex;
    flex: 1;
    width: 100%;
}

.control-file-name {
    background: #EEE;
    border: 1px solid #CACACA;
    flex: 1;
    border-radius: 4px 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px 10px;
}

.control-file-button {
    background: white;
    border: 1px solid black;
    color: black;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    padding: 5px 10px;
    flex-shrink: 0;
}

.control-file-button:hover {
    background-color: #ddd;
}