/* Avatar component styling */
[data-component="avatar"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  overflow: hidden;
  border-radius: 9999px; /* Full rounded */
  position: relative;
}

[data-component="avatar-image"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}

[data-component="avatar-fallback"] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 500;
}
