.document-upload-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.document-upload-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.document-file-list {
    margin-top: 30px;
}

.document-file-item {
    padding: 10px;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.document-file-item:hover {
    background-color: #e9e9e9;
}

.document-file-icon {
    font-size: 18px;
    color: #007bff;
    margin-right: 10px;
}

.document-file-name {
    font-weight: 500;
}
