.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

a {
  text-decoration: none;
}

.school-card {
  background-color: white;
  border: 1px solid #e2e8f0;
  border-left: 5px solid #3b82f6;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  min-height: 150px;
}

.school-card:hover {
  transform: translateY(-3px);
}

.school-card h2 {
  font-size: 1.1rem;
  color: #1d4ed8;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.pagination {
  justify-content: center;
  margin-top: 2rem;
}


.header-box {
  background: linear-gradient(135deg, #3a86ff, #c683f0);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 100%;
}

.header-box h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

/*!* Search bar base style *!*/
/*.search-bar {*/
/*  display: flex;*/
/*  flex-direction: row;*/
/*  flex-wrap: wrap;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*  max-width: 100%;*/
/*  !* background: white; *!*/
/*  border-radius: 50px;*/
/*  padding: 8px;*/
/*}*/

/*!* Inputs and Select *!*/
/*.search-bar input[type="text"],*/
/*.search-bar select {*/
/*  flex: 1 1 auto;*/
/*  font-size: 14px;*/
/*  padding: 10px 14px;*/
/*  border: none;*/
/*  border-radius: 30px;*/
/*  outline: none;*/
/*  min-width: 120px;*/
/*}*/

/*!* Button style *!*/
/*.search-bar button {*/
/*  background-color: #fc5c7d;*/
/*  color: white;*/
/*  border: none;*/
/*  padding: 10px 20px;*/
/*  font-size: 14px;*/
/*  font-weight: bold;*/
/*  border-radius: 30px;*/
/*  cursor: pointer;*/
/*  transition: background-color 0.3s ease;*/
/*}*/

/*.search-bar button:hover {*/
/*  background-color: #e14b6c;*/
/*}*/

/*!* Mobile optimization *!*/
/*@media (max-width: 480px) {*/
/*  .search-bar {*/
/*    flex-direction: column;*/
/*    gap: 8px;*/
/*    border-radius: 20px;*/
/*    padding: 15px;*/
/*    !* background: white; *!*/
/*  }*/

/*  .search-bar input[type="text"],*/
/*  .search-bar select,*/
/*  .search-bar button {*/
/*    width: 100%;*/
/*    border-radius: 10px;*/
/*  }*/

/*  .header-box h1 {*/
/*    font-size: 18px;*/
/*  }*/
/*}*/