.universities-page-title {
    color: #6d5dfc;
    font-weight: 800;
    margin-bottom: 12px;
  }

  .university-search-box {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(55, 35, 120, 0.10);
    padding: 20px;
    margin-bottom: 28px;
    background: #ffffff;
  }

  .university-search-btn {
    background: linear-gradient(90deg, #6d28d9, #ff6b8a);
    border: none;
    color: #ffffff;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 18px;
    box-shadow: 0 8px 18px rgba(109, 40, 217, 0.22);
  }

  .university-search-btn:hover {
    color: #ffffff;
    opacity: 0.94;
  }

  .university-card {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(55, 35, 120, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .university-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(55, 35, 120, 0.16);
  }

  .university-logo-wrap {
    height: 190px;
    background: #f7f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .university-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
  }

  .university-logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f0ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d5dfc;
    font-weight: 800;
    font-size: 42px;
  }

  .university-card-title {
    color: #6d5dfc;
    font-weight: 800;
    min-height: 56px;
  }

  .ranking-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
  }

  .ranking-unavailable {
    color: #6b7280;
    font-weight: 600;
  }

  .pagination .page-link {
    color: #6d28d9;
    border-radius: 10px;
    margin: 0 3px;
  }

  .pagination .page-item.active .page-link {
    background: linear-gradient(90deg, #6d28d9, #ff6b8a);
    border-color: transparent;
    color: #fff;
  }
