/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 03 2025 | 02:18:23 */
.grade-list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.grade-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 15px;
}
.grade-item.highlight {
  border-color: #007aff;
  background: #f0f8ff;
}
.grade-item h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
@media(max-width: 768px){
  .grade-list {
    grid-template-columns: 1fr;
  }
}