#online-container {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 50px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

#online-container:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

#visitorCount {
  transition: color 0.3s;
}

.fade {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

#online-indicator {
  font-size: 24px;
  margin-right: 5px;
}

#traffic-label {
  font-size: 14px;
  margin-left: 5px;
  color: #555;
}

#last-visitor {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: #F54927;
}

#last-visitor span {
  font-weight: normal; /* Ensure normal weight for any span inside #last-visitor */
}
