.order-upload-section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.uploaded-files-section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.uploaded-files-section img {
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.uploaded-files-section ul {
    list-style: none;
    padding: 0;
}

.uploaded-files-section li {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

.custom-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.file-text {
    flex-grow: 1;
    color: #666;
    font-size: 14px;
}

.file-button {
    padding: 6px 12px;
    background: #0073aa;
    color: white;
    border-radius: 3px;
    font-size: 13px;
}

.file-input:focus + .file-label {
    border-color: #0073aa;
    box-shadow: 0 0 2px rgba(0,115,170,0.8);
}
