.file-upload-container {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
}

.custom-upload-button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.custom-upload-button:hover {
    background-color: #005a87;
}

#file-preview-container {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.file-preview {
    display: flex;
    align-items: center;
    background-color: #f3f3f3;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    position: relative;
}

.file-preview img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.remove-file {
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    padding: 3px;
    font-size: 12px;
    border-radius: 50%;
    margin-left: 8px;
}