.i-keysearch {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.i-keysearch-input {
    display: flex;
    align-items: center;
}

.i-keysearch-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--label);
}

.i-keysearch-spinner {
    zoom: 0.5;
}

.i-keysearch-input-key {
    padding: 4px 8px;
    border-radius: 4px 0 0 4px;
    outline: 0;
    border: 1px solid var(--border);
    min-height: 32px;
    max-height: 32px;
    box-sizing: border-box;
    color: #303640;
    transition-duration: 0.2s;
    max-width: 100px;
}

.i-keysearch-input-key:focus {
    border-color: var(--blue);
}

.i-keysearch-input-key:read-only {
    background-color: var(--light);
}

.i-keysearch-button {
    border: 1px solid var(--border);
    border-left: 0px;
    min-height: 32px;
    max-height: 32px;
    background-color: var(--light);
    cursor: pointer;
}

.i-keysearch-description {
    padding: 4px 8px;
    border-radius: 0 4px 4px 0;
    outline: 0;
    border: 1px solid var(--border);
    min-height: 32px;
    max-height: 32px;
    box-sizing: border-box;
    color: #303640;
    transition-duration: 0.2s;
    background-color: var(--light);
    align-items: center;
    border-left: 0;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.i-keysearch-notfound {
    color: var(--red);
}

.i-keysearch-table {
    display: none;
}