body {
    margin: 0;
    padding: 0;
    background: white;
    color: black;
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
}

.page {
    width: 96%;
    margin: 20px auto;
}

h1 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0 20px 0;
}

.search-area {
    text-align: center;
    margin-bottom: 15px;
}

#searchInput {
    width: 420px;
    max-width: 90%;
    padding: 6px 8px;
    font-size: 16px;
    font-family: "Times New Roman", Times, serif;
    border: 1px solid black;
}

.status {
    margin: 10px 0 15px 0;
    text-align: center;
}

.table-wrap {
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: auto;
    border: 1px solid black;
}

table {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

th, td {
    padding: 4px 6px;
    vertical-align: top;
    text-align: left;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    min-width: 0;
}

th:first-child,
td:first-child {
    border-left: 0;
}

thead th {
    position: sticky;
    top: 0;
    background: #f2f2f2;
    white-space: nowrap;
    z-index: 100;
    border-top: 0;
    overflow: hidden;
}

td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.pagination {
    text-align: center;
    margin: 12px 0;
}

.pagination button {
    padding: 4px 8px;
    margin: 0 8px;
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
}

.page-info {
    font-weight: bold;
}

.col-resizer {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    cursor: col-resize;
    user-select: none;
}

.table-controls {
    text-align: center;
    margin: 10px 0 12px 0;
}

.table-controls button {
    padding: 4px 10px;
    font-family: "Times New Roman", Times, serif;
    font-size: 10px;
}