body { background-color: #f8f9fa; }
.card { border-radius: 12px; }
.btn-primary { border-radius: 8px; }
.table { background: #ffffff; border-radius: 8px; }

/* تأثير التكبير والحدّ عند المرور أو الاختيار */
.course-option {
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
  position: relative;
}
.course-option img {
  display: block;
  width: 200px;
  height: auto;
  border: 3px solid transparent;
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
/* عند المرور على الصورة */
.course-option:hover img {
  transform: scale(1.05);
  z-index: 2;
}
/* عند اختيار الدورة */
.course-option input[type="radio"]:checked + img {
  transform: scale(1.05);
  border-color: #198754; /* أخضر Bootstrap */
  z-index: 2;
}
.course-option input[type="radio"] {
  display: none;
}