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

 .post-snippet h5:hover {
   text-decoration: underline;
 }

 .badge {
   font-size: 0.85rem;
 }

/* Reactions Styles */
.reactions-container {
  margin-top: 1rem;
  padding-top: 0rem;
  border-top: 0px solid #e9ecef;
}

.reactions-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.reaction-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  /*border: 1px solid #dee2e6;*/
  background: white;
  transition: all 0.2s;
}

.reaction-btn:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}

.reaction-btn.active {
  background: #e3f2fd;
  border-color: transparent;
  /*color: #1976d2;*/
}

.reaction-btn .count {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Remove focus outline from user dropdown link */
.nav-link.dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}
