.activity-score {
	margin: 0px;
	padding: 0px;
	height: 1rem;
	float: left; 
}

.activity-date {
	margin: 0px;
	text-align: center;
	float: left; 
}

.activity-score.asc {
	background-color: green;
}

.activity-score.desc {
	background-color: red;
}

.activity-score.eq {
	background-color: grey;
}

.stats-menu {
	background-color: var(--bg-og-3);
	text-align: center;
	display: block; 
}

.stats-menu ul {
  list-style: none;         
  padding: 0;               
  margin: 0;        
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stats-menu ul li {
  color: var(--text-og-1);
  width: auto;              
  background-color: var(--bg-og-3);      
  box-sizing: border-box;  
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
}

.stats-menu ul li.active {
  background-color: #2d3742;
  color: var(--text-og-3);
}

.stats-menu ul li:hover {
  background-color: #3d4b5b;
}

.stats-menu ul li a {
  width: auto;
  display: block;           
  color: white;             
  text-decoration: none;    
}

.item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.item-link:hover {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.item {
  padding: 1rem;
}

.item-title {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.item-image img {
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.item-link:hover .item-image img {
  filter: brightness(1.2);
  transform: scale(1.03);
}

.item-description {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#activity-date-container {
	width: 100%;
	margin: 0px;
}

#activity-score-container {
	width: 100%;
	margin: 0px;
}

#searchResults {
  max-height: 250px;
  width: 15rem;
  overflow-y: auto;
  display: none;
  position: absolute; 
  top: 100%;        
  left: 0;
  z-index: 1000; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);  
}

#searchResults li {
	width: 15rem;
	background-color: var(--bg-og-2);
	color: var(--text-og-2);
	cursor: pointer;
}

#searchResults li:hover {
	background-color: var(--bg-og-3);
	color: var(--text-og-3);
}

#searchInput {
	color: white;
}