.activity-page {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.activity-row {
  display: flex;
  gap: 1.25rem;
  padding: 0.9rem 1.2rem;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;

  transition: all 0.2s ease;
  align-items: flex-start;
  position: relative;


}
.activity-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 2px;
  background: rgba(255, 200, 100, 0.6);
}

.activity-row.level::before {
  background: #4caf50; /* green */
}

.activity-row.xp::before {
  background: #64b5f6; /* blue */
}

.activity-row.quest::before {
  background: #ffd54f; /* gold */
}

.activity-row.clan::before {
  background: #ba68c8; /* purple */
}

.activity-row.general::before {
  background: rgba(255,255,255,0.2);
}

.activity-row:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255, 200, 100, 0.25);
  transform: translateY(-1px);
}

.activity-row__left {
  min-width: 160px;
  font-size: 0.8rem;
  color: var(--text-secondary);

  opacity: 0.8;
  font-variant-numeric: tabular-nums;
}

.activity-row__content {
  flex: 1;
  color: var(--text-primary);
}
.activity-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.activity-details {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.8;
}
