/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 .customSuggestionsList > div{
    max-height: 300px;
    min-height: 50px;
    border: 2px solid pink;
    overflow: auto;
  }

  .customSuggestionsList .empty{
    color: #999;
    font-size: 20px;
    text-align: center;
    padding: 1em;
  }

/* Lexxy editor code syntax highlighting */
.lexxy-editor__content {
  code[data-language] {
    background-color: var(--lexxy-color-ink-lightest, #f5f5f5);
    border-radius: var(--lexxy-radius, 0.5ch);
    display: block;
    padding: 1ch;
    font-family: var(--lexxy-font-mono, ui-monospace, monospace);
    font-size: 0.9em;
    margin-block: 0 1rem;
    overflow-x: auto;
    tab-size: 2;
    white-space: pre;
  }

  /* Keywords and attributes */
  .code-token__attr {
    color: var(--lexxy-color-code-token-att);
  }

  /* Constants, booleans, numbers, properties, tags */
  .code-token__property {
    color: var(--lexxy-color-code-token-property);
  }

  /* Strings, selectors, and built-in constructs */
  .code-token__selector {
    color: var(--lexxy-color-code-token-selector);
  }

  /* Comments and meta information */
  .code-token__comment {
    color: var(--lexxy-color-code-token-comment);
    font-style: italic;
  }

  /* Operators and symbolic entities */
  .code-token__operator {
    color: var(--lexxy-color-code-token-operator);
  }

  /* Functions and class names */
  .code-token__function {
    color: var(--lexxy-color-code-token-function);
  }

  /* Variables, regex, namespaces, important */
  .code-token__variable {
    color: var(--lexxy-color-code-token-variable);
  }

  /* Punctuation */
  .code-token__punctuation {
    color: var(--lexxy-color-code-token-punctuation);
  }
}
