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

/*
 * Range card carousel — dot indicators.
 * The active dot (aria-current="true") widens and brightens; inactive dots
 * are smaller and semi-transparent. State is toggled via aria-current by the
 * carousel Stimulus controller, so no JS class toggling is needed.
 */
.carousel-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background-color: rgb(255 255 255 / 0.6);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.15s ease, background-color 0.15s ease;
}
.carousel-dot[aria-current="true"] {
  width: 1rem;
  background-color: rgb(255 255 255);
}
