/* @define LinkButtonsList */

/* stylelint-disable plugin/selector-bem-pattern -- these variables violate the expected naming it wants them with the ComponentName too */
.LinkButtonsList-buttonContainer {
    --button-height: 40px;
    --link-buttons-row-num: 5;

    display: flex;
    flex-direction: column;
    max-height: calc(var(--button-height) * var(--link-buttons-row-num));
    overflow: auto;
}
/* stylelint-enable plugin/selector-bem-pattern */

.LinkButtonsList-linkButton {
    flex-shrink: 0;
    text-align: start;
}

.LinkButtonsList-noResultsMessageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.LinkButtonsList-noResultsMessage {
    color: var(--text-subtle);
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: normal;
}
