
.trend-widget h2 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-weight: 600;
  color: #333;
}
.trend-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.trend-item + .trend-item {
  margin-top: 6px;
}
.trend-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #0366d6;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.1s;
}
.trend-link:hover {
  background: rgba(3,102,214,0.1);
}
.trend-tag {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    font-size: 14px;
}
.trend-count {
  font-size: 0.85rem;
  color: #586069;
}

#onfire {
    background-color: orange;
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 2px solid orange;
}
/* tutte le bolle in onfire */
#onfire .bubble {
    margin-bottom: 0px !important;
    border-left: 4px solid orange !important;
    background-color: #fff5f5;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    width: auto;
}

/* la prima bolla (OP) */
#onfire .bubble:first-child {
  position: relative;
  background-color: #ffe5e5;
}

/* etichetta “Original Post” */
#onfire .bubble:first-child::before {
    content: "🔴 ON FIRE";
    position: absolute;
    top: -3em;
    left: 0;
    font-size: 0.75rem;
    color: #e63946;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.ultimaInt{background-color: #f7cccc !important;}