.student-card {
  background-color: #1a1a1a;
  padding: 1.2rem;
  border: 0.1px solid white;
  border-radius: 16px;
  text-align: center;
  width: 320px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
  color: var(--text-light);
}

#student-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.student-card:hover {
  transform: scale(1.05);
}

.student-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border: 3px solid rgb(190, 189, 189);
  box-shadow: 0 0 6px rgba(252, 251, 251, 0.5);
  border-radius: 15px;
  margin-bottom: 0.5rem;
}

.student-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.student-stream,
.student-interest {
  font-size: 0.95rem;
  margin: 4px 0;
  color: #b3b3b3;
}

.student-reason {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-style: italic;
  color: #cccccc;
}
