#edit-file-upload-ui {
    width: 100%;
    max-width: 500px;
    margin-right: 30px;
    margin-top: -20px;
    padding: 0px 20px 20px 0px;
    background-color: transparent;
    border-radius: 8px;
}


#edit-file-upload-ui .input-group {
    margin-bottom: 20px;
}

#edit-file-upload-ui .input-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
}

#edit_name_2 {
    max-width: 460px;
    width: 100%;
    height: 46px;
    background-color: #C4C4C4;
    border-radius: 5px;
    padding: 10px 13px;
    font-size: 16px;
    color: #000;
    line-height: 26px;
    box-sizing: border-box;
    border: none;
}

#edit_upload_1 {
    width: auto; /* <-- auto width */
    padding: 12px 20px;
    font-size: 16px;
    white-space: nowrap;
    border-radius: 10px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

#edit_upload_1:hover {
    background: #fff;
    color: #3A3A3A;
}

button#submit-edit-file-upload {
    width: auto; /* <-- auto width */
    padding: 12px 20px;
    font-size: 16px;
    white-space: nowrap;
    border-radius: 10px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

button#submit-edit-file-upload:hover {
    background: #fff;
    color: #3A3A3A;
}

button#submit-edit-file-upload-loading {
    width: auto; /* <-- auto width */
    padding: 12px 20px;
    font-size: 16px;
    white-space: nowrap;
    border-radius: 10px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    display: none;
}

button#submit-edit-file-upload-loading:hover {
    background: #fff;
    color: #3A3A3A;
}

.custom-upload-icon {
    background-color: rgba(200, 200, 200, 0.2);
    border: none;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.custom-upload-icon:hover {
    background-color: white;
}

.upload-svg {
    width: 19px;
    height: 19px;
    stroke: white;
}

.custom-upload-icon:hover .upload-svg {
    stroke: #3A3A3A;
}

.file-name-display {
    margin-top: 10px;
    color: #fff;
    font-size: 12px;
    word-break: break-word;
}

.upload-submit-row {
    display: flex;
    align-items: center;
    gap: 15px; /* spacing between upload icon and submit button */
    margin-top: 10px;
}

#edit-file-upload-ui h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}