html, body {height: 100%;margin: 0;padding: 0;}
#tableContainer {height: calc(100vh - 20px);overflow: auto;position: relative;}
table {border-collapse: collapse;width: 100%;table-layout: fixed;}
th, td {border: 1px solid #ddd;padding: 8px;text-align: left;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
th {background-color: #f2f2f2;position: sticky;top: 0;z-index: 10;}
.virtual-scroll-container {position: relative;}
.virtual-scroll-content {position: absolute;top: 0;left: 0;right: 0;}
.virtual-row {display: flex;border-bottom: 1px solid #ddd;font-size:14px}
.virtual-cell {flex: 1;padding: 8px;border-right: 1px solid #ddd;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;position: relative;}
.tooltip-container {position: fixed;background-color: #f8faf1;border: 1px solid #00a036;padding: 10px;box-shadow: 2px 2px 5px rgba(0,0,0,0.2);white-space: normal;word-wrap: break-word;max-width: 400px;z-index: 1001;font-weight: normal;pointer-events: none;}
.virtual-header {display: flex;background-color: #f2f2f2;position: sticky;top: 0;z-index: 10;font-weight: bold;}
.virtual-header-cell {flex: 1;padding: 8px;border-right: 1px solid #ddd;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.virtual-cell:nth-child(1), .virtual-header-cell:nth-child(1) {flex: 0 0 100px;}
.virtual-cell:nth-child(2), .virtual-header-cell:nth-child(2) {flex: 0 0 120px;}
.virtual-cell:nth-child(4), .virtual-header-cell:nth-child(4) {flex: 1 1 150px;}
.highlight {background-color: yellow;font-weight: bold;}
#searchContainer {position: fixed;top: 10px;right: 10px;background: white;border: 1px solid #ccc;border-radius: 4px;padding: 10px;box-shadow: 0 2px 10px rgba(0,0,0,0.2);z-index: 1002;display: none;}
#searchInput {padding: 5px;margin-right: 5px;border: 1px solid #999;border-radius: 3px;}
#searchButton {padding: 5px 10px;background: #007cba;color: white;border: none;border-radius: 3px;cursor: pointer;}
#searchButton:hover {background: #005a87;}
#closeSearch {margin-left: 5px;padding: 5px 10px;background: #ccc;border: none;border-radius: 3px;cursor: pointer;}
#searchInfo {margin-top: 5px;font-size: 12px;color: #666;}