html {
    height: 100%;
    width: 100%;
}

body {
    font-family: IBMPlexSans, sans-serif;
    font-style: normal;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 4%;
}

.sdev-table-container {
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: row;
    align-items: start;
    outline: 3px solid;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-wrap: nowrap;
    padding: 5px 11px;
    min-width: 200px;
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: start;
    border: 1px solid;
}

th, td:first-of-type{
    min-width: 120px;
    max-width: 120px;
}

th {
    position: sticky;
    top: -1px;
    z-index: 3;
    height: 48px;
    background-color: #fff;
    outline: 2px solid;
    cursor: pointer;
    font-size: large;
}

td {
    height: 32px;
}

.sdev-table-header-cell {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.sdev-table-image {
    width: 100%;
    height: 22px;
    object-fit: cover;
}

.table-row-placeholder td {
    border: 0;
    padding: 0;
}

#semantic-search-container {
    position: absolute;
    top: 20px;
    display: flex;
    align-items: center;
    z-index: 999;
    max-width: 80%;
    background-color: #fff;
}

#semantic-search {
    border: 1px solid;
    font-size: 0;
    display: flex;
    align-items: center;
}

#search-input {
    border: 0;
    padding: 5px 8px;
    font-size: initial;
}

#search-button {
    padding: 5px 11px;
    border-left: 1px solid;
    cursor: pointer;
    font-size: initial;
}

#clear-button {
    padding: 5px 5px;
    cursor: pointer;
    font-size: initial;
}

#semantic-search-loading {
    display: none;
    margin-left: 11px;
}

#semantic-search-loading.active {
    display: inline-block;
}