#table_view {
    padding: 0;
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#table_view_header {
    max-height: 34px;
    flex-basis: 34px;
    left: 0;
    right: 0;
    position: sticky;
    line-height: 1.1rem;
    padding: 8px 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

#table_view_header_title {
    padding-right: 8px;
}

#table_container {
    overflow: auto;
    flex: 1;
    background: #fff;
}

#table_container table {
    table-layout: fixed;
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    border-spacing: 0;
}

#table_container tbody {
    position: relative;
}

#table_container .columnHeaderCell {
    height: 62px;
    position: sticky;
    top: 0;
    padding: 6px;
    background: #f8fafc;
    z-index: 2;
    color: #334155;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
}

#table_container .columnFilterCell {
    padding-top: 6px;
    text-overflow: ellipsis;
    overflow: hidden;
}

#table_container .columnFilterCell input {
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
}

#table_container td, #table_container .columnHeaderCell {
    border: 1px solid #e2e8f0;
}

#table_container td.selected {
    background: #2563eb;
    color: #fff;
}

#table_container td div {
    height: 40px;
    box-sizing: border-box;
    padding: 10px 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre;
    font-size: 13px;
    line-height: 1.2em;
}

#table_container tbody tr:nth-child(even) td:not(.selected) {
    background: #fcfdff;
}

#table_container tbody tr:hover td:not(.selected) {
    background: #eff6ff;
}

#table_container tbody tr:hover td.selected {
    background: #2563eb;
}

#table_container .nullValue {
    font-style: italic;
    color: #64748b;
}

::placeholder {
    color: #959595; /* Use any color format (HEX, RGB, Name) */
    opacity: 1;    /* Required for Firefox to show full color */
}