﻿#user-score {
  position: fixed;
  top: 15px;
  right:22px!important;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px; /* فاصله بین آیکون و عدد */
  transition: all 0.3s ease;
  z-index: 1000;

}

#user-score.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}

#user-score .fas {
  color: gold; /* رنگ طلایی برای آیکون سکه */
  font-size: 14px;
}

