
#importForm p.inline label, #importForm p.inline input { display:inline; }

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


#list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    width: 250px;
}

.list-name, .list-values {
    width: 90%;
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.list-values {
    height: 100px;
}

#content button.remove-list {
    padding: 5px 10px;
    margin-top: 5px;
    border: none;
    background: #FF4136;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.remove-list:hover {
    background: #C12E2A;
}

.controls {
    margin-top: 20px;
}

#separator {
    width: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#combine-names {
    width: 300px;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#content label,
#content input {
    display:block;
    margin:10px 0;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

#content button {
    display:block;
    margin:10px 0;
    padding: 10px 20px;
    border: none;
    background: #007BFF;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

#content button:hover {
    background: #0056b3;
}

#content button.option { 
    background: #D5D5D5;
}

#content button.option:hover {
    background: #B5B5B5;
}

#result {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
    min-height: 50px;
    white-space: pre-line;
    margin-top: 20px;
}