// Student Profile Label
        private void labelStudentProfile_Click(object sender, EventArgs e)
        {
            if (currentSelectedLabel == this.labelStudentProfile)
            {
                return;
            }
            this.labelStudentProfile.Focus();
            restoreAndAddAnimation(this.labelStudentProfile);
            currentSelectedLabel = this.labelStudentProfile;

            // Class Schedule
            TutorClassScheduleForm.hideAllComponents();
            TutorClassScheduleForm.resetClassScheduleInformation();
            TutorNewClassScheduleForm.hideAllComponents();
            TutorNewClassScheduleForm.resetNewClassScheduleInformation();

            TutorStudentProfileForm.showAllComponents();
            TutorStudentProfileForm.updateTutorInformation();
        }