.avatar {
  border-radius: 50%;
  margin-right: 8px;
  aspect-ratio: 1;
}

.current-user {
  font-weight: bold;
  display: flex;
  align-items: center;
}

aside .current-user {
  margin-bottom: 1rem;
}

.current-user .avatar {
  border: 2px solid #00dded;
}


.avatar:hover {
  animation: spin 1s linear infinite;
  animation-delay: 3s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* GitHub Profile Link Styling */
.github-profile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  text-decoration: none;
  line-height: 1;
  background-color: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 2px 4px;
  transition: all 0.2s ease;
  margin-left: 2px;
}

.github-profile-link:hover {
  background-color: rgba(255,255,255,0.15);
  color: #E2E8F0;
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.github-profile-link:active {
  transform: translateY(0);
  box-shadow: none;
}

/* User name and links container */
.user-name-and-links {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}