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

html {
  font-size: 15px;
}

.tooltip {
  z-index: 9999;
  background-color: black;
  width: max-content;
  max-width: 50vw;
  color: white;
  border-radius: 4px;
  padding: 8px;
  font-size: .75rem;
  line-height: 1rem;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 4px 6px -1px #1018281a, 0 2px 4px -2px #1018281a
}

.tooltip.open {
  display: block
}

.tooltip .arrow {
  background-color: black;
  z-index: -1;
  pointer-events: none;
  width: 8px;
  height: 8px;
  position: absolute;
  transform: rotate(45deg)
}
