body {
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

.drop-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
}

.drop-text {
    font-size: 18px;
    margin: 0;
}

.file-list {
    margin-top: 20px;
}

.file-item {
    margin: 8px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
}

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