.info-section {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
}

.info-section h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 20px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

.info-section h3:first-child {
  margin-top: 0;
}

.info-section ol {
  padding-left: 24px;
  margin: 0;
}

.info-section li {
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.school-section {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.search-box input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
}

.search-box input:focus {
  border-color: var(--primary);
}

.clear-btn {
  padding: 10px 20px;
  background: var(--gray-500);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.clear-btn:hover {
  background: var(--gray-600);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}

.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.radio-item:hover {
  border-color: var(--primary);
  background: #eef2ff;
}

.radio-item input[type="radio"] {
  display: none;
}

.radio-item input[type="radio"]:checked + .radio-text {
  color: var(--primary);
  font-weight: 600;
}

.radio-item:has(input[type="radio"]:checked) {
  border-color: var(--primary);
  background: #eef2ff;
}

.radio-text {
  font-size: 0.95rem;
  color: var(--gray-700);
}

.stats-bar {
  padding: 10px 0;
  color: var(--gray-500);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0;
}

.table-wrapper {
  overflow-x: auto;
}

.school-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.school-table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  position: sticky;
  top: 0;
}

.school-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
}

.school-table tr:hover td {
  background: #eef2ff;
}

.school-table tr:nth-child(even) td {
  background: var(--gray-50);
}

.school-table tr:nth-child(even):hover td {
  background: #eef2ff;
}

.tag-yes {
  color: #00a651;
  font-weight: 600;
}

.tag-no {
  color: #e74c3c;
}

.no-result {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-500);
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .info-section {
    padding: 16px;
  }
  .info-section h3 {
    font-size: 1rem;
  }
  .school-section {
    padding: 16px;
  }
  .filter-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .radio-group {
    width: 100%;
  }
  .radio-item {
    flex: 1;
    justify-content: center;
    min-width: calc(33% - 8px);
  }
  .school-table th,
  .school-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}