/* CSS para avatars de professores */

/* Avatar principal */
.teacher-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Fallback do avatar */
.teacher-avatar-fallback {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 12px;
}

/* Ícone de fallback */
.teacher-avatar-fallback-icon {
    width: 32px;
    height: 32px;
    opacity: 0.4;
} 