

#sgstResultsTableContainer {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fafafa;
    display: none;
}

.sgst-results-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.sgst-results-table th, .sgst-results-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    width: 33.333%;
    white-space: normal;
    overflow-wrap: break-word;
}

.sgst-results-table th {
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
    cursor: pointer;
    padding-right: 20px;
    white-space: nowrap;
}

.sgst-results-table tr:hover {
    background-color: #e9e9e9;
    cursor: pointer;
}

.sgst-results-table th.sgst-sort-asc,
.sgst-results-table th.sgst-sort-desc {
    color: #007bff;
}

.sgst-results-table th.sgst-sort-asc::after {
    content: ' ↓';
    font-size: 1em;
    position: static;
    transform: none;
}

.sgst-results-table th.sgst-sort-desc::after {
    content: ' ↑';
    font-size: 1em;
    position: static;
    transform: none;
}

.sgst-results-table tbody tr.selected {
    background-color: #fffacd;
    font-weight: bold;
    color: #333;
}
