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

/* Custom styles for AI summary ordered lists */
.prose ol {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.prose ol > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.prose ol > li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #1f2937;
  min-width: 1.5rem;
}

.prose ol > li > strong {
  color: #111827;
  font-weight: 600;
}

/* Styles for markdown content in protest descriptions */
.protest-content a {
  text-decoration: underline;
  color: #2563eb;
  transition: color 0.2s ease;
}

.protest-content a:hover {
  color: #1d4ed8;
}

.protest-content p {
  margin-bottom: 0.5rem;
}
