/* User Avatar Styles */

/* Ensure avatar images maintain aspect ratio and fill circle properly */
.avatar img {
  object-fit: cover;
  object-position: center;
}

/* Specific styles for navbar avatar */
.navbar .avatar img {
  width: 40px !important;
  height: 40px !important;
  object-fit: cover;
  object-position: center;
}

/* Dropdown menu avatar */
.dropdown-menu .avatar img {
  width: 40px !important;
  height: 40px !important;
  object-fit: cover;
  object-position: center;
}

/* General circle image class */
.rounded-circle {
  border-radius: 50% !important;
}

/* Ensure consistent sizing for person avatars */
.person-avatar {
  object-fit: cover;
  object-position: center;
}

/* Add smooth transition for avatar hover effects */
.avatar img {
  transition: transform 0.2s ease;
}

.avatar:hover img {
  transform: scale(1.05);
}