/*
 * 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.
 */

.pagination-container {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -1%;
  color: var(--900, #243644);
}

.pagination-container .page {
  margin-left: 8px;
  margin-right: 8px;
}

/* Prevents scrolling on the page if there's an open dialog element */
body:has(dialog[open]) {
  overflow: hidden;
}

dialog::backdrop {
  opacity: 0.5;
  background-color: black;
}
