body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.filter-section {
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-button {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    cursor: pointer;
    font-size: 16px;
    min-width: 40px;
    text-align: center;
}

.filter-button.selected {
    background-color: #007bff;
    color: white;
}

.result-section {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#resultNames {
    flex: 1;
    height: 170px;
    font-size: 14px;
}

#copyButton {
    align-self: flex-start;
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#copyButton:hover {
    background-color: #45a049;
}

.tables-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.data-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
	min-width:3em;
}

.data-table th {
    background-color: #f2f2f2;
}

.data-table th:first-child ,
.data-table td:first-child {
	min-width:11em;
}

.highlighted {
    font-weight: bold;
    color: #ff8c00;
    background-color: rgba(255, 140, 0, 0.1);
}