.student-profile {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    background: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
}

    .student-profile:hover {
        transform: translateY(-2px);
        color: #0d6efd;
    }

.student-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 12px;
}

.student-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

    .student-info small {
        color: #777;
        font-size: 11px;
    }

    .student-info strong {
        font-size: 15px;
        font-weight: 700;
    }
