.a-keysearch {
    display: flex;
    gap: 4px;
    padding-bottom: 5px;
    align-items: center;
}

.a-keysearch > div {
    flex-basis: 0;
    flex-grow: 1;
}

.a-keysearch-parent {
    margin-top: 4px;
    min-width: fit-content;
}

.a-keysearch-key {
    max-width: fit-content;
    min-width: fit-content;
}

.a-keysearch-label {
    padding: 4px;
    font-weight: bold;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-height: 12px;
    min-height: 12px;
}

.a-keysearch-label.required-field {
    color: red;
}

.a-keysearch-description {
    flex-grow: 1;
}

.a-keysearch-key > .a-textbox-input {
    max-width: 120px;
}

.a-keysearch-popup-header-title {
    font-weight: bold;
    flex-grow: 1;
    color: #555555;
    margin-right: -32px;
    font-size: 10pt;
    text-align: center;
}

.a-keysearch-popup-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -16px;
    margin-right: 8px;
    margin-left: 8px;
    position: relative;
    align-items: center;
}

.a-keysearch-list {
    max-width: fit-content;
    min-width: fit-content;
}

.a-keysearch-detail {
    max-width: fit-content;
}

.a-keysearch-list-popup {
    min-width: 400px;
    max-width: 400px;
    min-height: 550px;
    max-height: 550px;
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 4;
    background-color: white;
    border: 1px solid silver;
    border-radius: 3px;
    padding: 8px;
    margin-top: 4px;
    gap: 8px;
}

.a-keysearch-list-popup-bg {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3;
    position: fixed;
}

.a-keysearch-popup-container {
    display: none;
}

.a-keysearch-button {
    
}

.a-keysearch-notfound {
    background-color: #ffd9d9 !important;
}