.material-icon-16 {
    font-family: 'Material Symbols Outlined';
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
}

.material-icon-24 {
    font-family: 'Material Symbols Outlined';
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    
}

/* Alsie Avatar Animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.alsie-avatar {
  transition: transform 0.3s ease; 
}

.alsie-avatar.rotating {
  animation: rotate 2s linear infinite;
  transform-origin: center;
}