/* Guest Student Modal Styles */

.guest-student-item {
  transition: all 0.2s ease;
  border-radius: 6px;
}

.guest-student-item:hover {
  background-color: #f8f9fa !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.guest-student-item .student-avatar {
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
}

#guestStudentModal .uk-modal-dialog {
  max-width: 600px;
}

#guestStudentModal .uk-height-medium {
  max-height: 300px;
}

#currentStudentsList .student-avatar {
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto;
}

.guest-student-item .uk-text-success {
  transition: transform 0.2s ease;
}

.guest-student-item:hover .uk-text-success {
  transform: scale(1.2);
}