.avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ccc;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar .badge {
  position: absolute;
  bottom: 2px;   /* inside the avatar */
  right: 2px;    /* inside the avatar */
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #007bff;
  box-shadow: 0 0 2px rgba(0,0,0,0.2); /* optional depth */
}

.avatar.initials {
  font-size: 28px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
  
/* Example badge style */
.badge.verified::before {
  content: '✔';
}

.user-attribute {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-left: 3px solid #007bff; /* Highlight stripe */
  background-color: #f9f9f9;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

.user-attribute strong {
  display: block;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.user-attribute p {
  margin: 0;
  padding: 0;
  color: #555;
}

#view-user-panel-title, #follows-you-text{
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 4px;
  margin-top: 8px;
}

#follows-you-text{
   font-size: 1.0em;
   font-weight: normal;
}
