/*!
 * SPDX-License-Identifier: Apache-2.0
 *
 * The OpenSearch Contributors require contributions made to
 * this file be licensed under the Apache-2.0 license or a
 * compatible open source license.
 *
 * Modifications Copyright OpenSearch Contributors. See
 * GitHub history for details.
 */

/**
  * 1. Prevent really long input from overflowing the container.
  */
.ouiSelectableMessage {
  padding: $ouiSizeS;
  text-align: center;
  word-wrap: break-word; /* 1 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.ouiSelectableMessage--bordered {
  // Match border from selectable_list
  overflow: hidden;
  border: $ouiBorderThin;
  border-radius: $ouiBorderRadius;
}
