body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}

.page-header {
  text-align: center;
  padding: 20px;
  font-size: 2rem;
  font-weight: bold;
}

/* البطاقات */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.student-card {
  width: 250px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

.student-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.student-name {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
}

.quote {
  font-style: italic;
  color: #333;
  margin: 5px 0;
}

.most-likely {
  color: #555;
  margin-bottom: 10px;
}

/* شرط الأستاذ: إذا الشاشة أقل من 500px */
@media(max-width: 500px) {
  .student-card {
    background-color: #e3f3ff; /* أي لون خفيف */
  }
}
