.a-keysearch {
    display: flex;
    gap: 3px;
    padding-bottom: 5px;
}

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

.a-keysearch-key {
    margin-left: -3px;
    max-width: fit-content;
}

.a-keysearch-key > .a-keysearch-key-input {
    border-radius: 0 3px 3px 0;
    border-left: 1px solid #cccccc;
    width: 100px;
}

.a-keysearch-label {
    min-width: 150px;
    max-width: 150px;
    background-color: #f4f4f4;
    font-weight: bold;
    display: flex;
    color: #555555;
    align-items: center;
    padding-left: 4px;
    border: 1px solid #ccc;
    border-radius: 3px 0 0 3px;
    border-right: 0;
    min-height: 23px;
    max-height: 23px;
}

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

.a-keysearch-description {
    background-color: #f4f4f4;
    color: #555555;
    overflow: hidden;
    padding-left: 4px;
    padding-right: 4px;
    min-height: 23px;
    max-height: 23px;
    line-height: 23px;
    white-space: nowrap;
    text-overflow: ellipsis;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.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;
}

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

.a-keysearch-list-popup {
    min-width: 400px;
    max-width: 400px;
    min-height: 500px;
    max-height: 500px;
    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 {
    outline: 0;
    border: 1px solid silver;
    border-radius: 3px;
    min-height: 23px;
    max-height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

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