.container {
    display: flex;
    gap: 20px;
    height: 30em;
    max-height: 30em;
}

.settings, .dropzone {
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    width: 50%;
}

.settings {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.setting {
    padding: 10px;
    background-color: #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.dropzone {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
    transition: background-color 0.3s;
}
