/* Custom file input styling */

.file-input-container {
    display: flex;
    width: 100%;
}

.file-input-text {
    flex-grow: 1;
    padding: 1px 5px;
    height: 30px;
    border: 1px solid #ced4da;
    border-right: 0;
    font-size: 12px;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input-button {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    color: #333;
    padding: 0px 10px;
    height: 30px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.hidden-file-input {
    display: none;
}