/* ========================================
   Schools Page — Top Bar, Filter Drawer, Chips, Table
   Color variables and badges are in shared.css
   ======================================== */

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-bar-search {
  position: relative;
  flex: 1;
  min-width: 180px;
}

.top-bar-search i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-light-blue-grey);
  font-size: 0.875rem;
}

.top-bar-search input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.25rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 8px;
  font-size: 0.875rem;
  background: var(--color-off-white);
  transition: border-color 0.15s, background 0.15s;
}

.top-bar-search input:focus {
  outline: none;
  border-color: var(--color-dark-navy);
  background: white;
  box-shadow: 0 0 0 2px rgba(17, 45, 78, 0.08);
}

/* ========================================
   Division Pills
   ======================================== */
.division-pills {
  display: flex;
  gap: 2px;
  background: var(--color-very-light-blue-grey);
  border-radius: 8px;
  padding: 3px;
  border: 1px solid var(--color-light-blue);
}

.division-pill {
  padding: 0.35rem 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--color-light-blue-grey);
  background: transparent;
}

.division-pill.active {
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.division-pill.active[data-division="D1"] { background: var(--color-d1-1); }
.division-pill.active[data-division="D2"] { background: var(--color-d2-1); }
.division-pill.active[data-division="D3"] { background: var(--color-d3-1); }
.division-pill.active[data-division="USports"] { background: var(--color-usports); }

.division-pill:hover:not(.active) {
  color: var(--color-muted-blue-grey);
  background: var(--color-light-blue);
}

/* ========================================
   Sub-level Pills
   ======================================== */
.sublevel-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.375rem 0;
}

.sublevel-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sublevel-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-muted-blue-grey);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-right: 2px;
}

.sublevel-pill {
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--color-light-blue-grey);
  background: white;
}

.sublevel-pill.active {
  color: white;
}
.sublevel-group[data-division="D1"] .sublevel-pill.active { background: var(--color-d1-2); border-color: var(--color-d1-2); }
.sublevel-group[data-division="D2"] .sublevel-pill.active { background: var(--color-d2-1); border-color: var(--color-d2-1); }
.sublevel-group[data-division="D3"] .sublevel-pill.active { background: var(--color-d3-2); border-color: var(--color-d3-2); }

.sublevel-pill:hover:not(.active) {
  border-color: var(--color-light-blue-grey);
  color: var(--color-muted-blue-grey);
}

/* ========================================
   Conference Trigger Button (Top Bar)
   ======================================== */
.top-bar-conference {
  position: relative;
}

.conference-trigger-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  background: white;
  color: var(--color-muted-blue-grey);
  transition: border-color 0.15s;
  white-space: nowrap;
}

.conference-trigger-btn:hover {
  border-color: var(--color-dark-navy);
}

.conference-trigger-btn .bi-chevron-down {
  font-size: 0.625rem;
  transition: transform 0.2s;
}

.conference-trigger-btn[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

/* ========================================
   Filters Trigger Button
   ======================================== */
.filters-trigger-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  background: white;
  color: var(--color-muted-blue-grey);
  transition: all 0.15s;
  white-space: nowrap;
}

.filters-trigger-btn:hover {
  border-color: var(--color-dark-navy);
}

.filter-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 10px;
  background: var(--color-dark-navy);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ========================================
   Filter Chips Bar
   ======================================== */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
  min-height: 0;
  padding: 0.25rem 0;
}

.filter-chips:empty {
  padding: 0;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  background: rgba(63, 114, 175, 0.08);
  color: var(--color-medium-blue);
  border: 1px solid rgba(63, 114, 175, 0.25);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.chip-remove {
  background: none;
  border: none;
  color: var(--color-light-blue-grey);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  transition: color 0.15s;
}

.chip-remove:hover {
  color: var(--color-medium-blue);
}

.chip-reset-all {
  background: none;
  border: none;
  color: var(--color-reach);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.chip-reset-all:hover {
  text-decoration: underline;
}

/* ========================================
   Filter Drawer (Right-side Slide-in)
   ======================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.filter-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: white;
  z-index: 1051;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.filter-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-light-blue);
  flex-shrink: 0;
}

.drawer-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark-navy);
}

.drawer-close {
  background: none;
  border: none;
  color: var(--color-muted-blue-grey);
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 6px;
  transition: background 0.15s;
  font-size: 1.1rem;
}

.drawer-close:hover {
  background: var(--color-very-light-blue-grey);
  color: var(--color-dark-navy);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.drawer-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-light-blue);
  flex-shrink: 0;
  background: white;
}

.btn-drawer-reset {
  flex: 1;
  padding: 0.625rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 8px;
  background: white;
  color: var(--color-muted-blue-grey);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-drawer-reset:hover {
  background: var(--color-very-light-blue-grey);
}

.btn-drawer-apply {
  flex: 2;
  padding: 0.625rem;
  border: none;
  border-radius: 8px;
  background: var(--color-dark-navy);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-drawer-apply:hover {
  background: var(--color-dark-blue-grey);
}

/* Drawer sections */
.drawer-section {
  border-bottom: 1px solid var(--color-light-blue);
}

.drawer-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border: none;
  background: none;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-muted-blue-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.15s;
}

.drawer-section-title:hover {
  color: var(--color-dark-navy);
}

.drawer-section-title i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.drawer-section-body {
  padding: 0 1.5rem 1rem;
}

.drawer-sub-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted-blue-grey);
  margin-bottom: 0.5rem;
}

/* ========================================
   Toggle Switches
   ======================================== */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.toggle-row span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-dark-blue-grey);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--color-light-blue-grey);
  border-radius: 20px;
  transition: background 0.2s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--color-dark-navy);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(16px);
}

/* ========================================
   Pill Toggles (Locale, Weather)
   ======================================== */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.pill-toggle {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  background: white;
  color: var(--color-light-blue-grey);
  transition: all 0.15s;
}

.pill-toggle.active {
  background: var(--color-dark-navy);
  color: white;
  border-color: var(--color-dark-navy);
}

.pill-toggle:hover:not(.active) {
  border-color: var(--color-light-blue-grey);
  color: var(--color-muted-blue-grey);
}

/* Fit tier pills — colored when active */
.fit-pill.active[data-value="target"] {
  background: var(--color-target);
  color: var(--color-dark-navy);
  border-color: var(--color-target);
}
.fit-pill.active[data-value="reach"] {
  background: var(--color-reach);
  color: #fff;
  border-color: var(--color-reach);
}
.fit-pill.active[data-value="safety"] {
  background: var(--color-safety);
  color: var(--color-dark-navy);
  border-color: var(--color-safety);
}

/* Filter subsection (label + pill group inside drawer) */
.filter-subsection {
  padding: 0.5rem 0;
}
.filter-subsection-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-light-blue-grey);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.375rem;
  display: block;
}

/* ========================================
   Dual-Range Sliders
   ======================================== */
.range-filter {
  margin-bottom: 1.25rem;
}

.range-filter:last-child {
  margin-bottom: 0;
}

.range-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}

.range-label span:first-child {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted-blue-grey);
}

.range-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-light-blue-grey);
  font-variant-numeric: tabular-nums;
}

.dual-range {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
}

.dual-range .range-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: var(--color-light-blue);
  border-radius: 2px;
}

.dual-range .range-fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: var(--color-dark-navy);
  border-radius: 2px;
  pointer-events: none;
}

.dual-range input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.dual-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-dark-navy);
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 2;
  margin-top: -6px; /* Center 16px thumb on 4px track: (4-16)/2 */
}

.dual-range input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-dark-navy);
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: all;
}

.dual-range input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.dual-range input[type="range"]::-moz-range-track {
  height: 4px;
  background: transparent;
  border: none;
}

/* ========================================
   Checkbox Group (Programs, Recruiting)
   ======================================== */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  cursor: pointer;
  margin: 0;
}

.filter-checkbox input[type="checkbox"] {
  width: 0.9rem;
  height: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--color-dark-navy);
}

.filter-checkbox span {
  font-size: 0.8125rem;
  color: var(--color-dark-blue-grey);
}

.filter-checkbox:hover span {
  color: var(--color-dark-navy);
}

/* ========================================
   Schools Table
   ======================================== */
.schools-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.schools-table thead th {
  padding: 0.625rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-dark-blue-grey);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--color-light-blue);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: color 0.15s;
}

.schools-table thead th:hover {
  color: var(--color-dark-navy);
}

/* Sort indicators */
.schools-table thead th[data-sort]::after {
  content: '';
  display: inline-block;
  margin-left: 4px;
  width: 0;
  height: 0;
  vertical-align: middle;
  opacity: 0;
  transition: opacity 0.15s;
}

.schools-table thead th[data-sort]:hover::after {
  opacity: 0.3;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 4px solid currentColor;
}

.schools-table thead th.sort-asc::after {
  opacity: 1 !important;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 5px solid var(--color-dark-navy);
  border-top: none;
}

.schools-table thead th.sort-desc::after {
  opacity: 1 !important;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-dark-navy);
  border-bottom: none;
}

.schools-table tbody tr {
  border-bottom: 1px solid var(--color-very-light-blue-grey);
  transition: background 0.1s;
}

.schools-table tbody tr:hover {
  background: var(--color-off-white);
}

.schools-table tbody td {
  padding: 0.5rem;
  vertical-align: middle;
}

/* Column-specific styles */
.col-heart {
  width: 40px;
  text-align: center;
}

.col-school {
  min-width: 160px;
  text-align: left;
}

.col-rank {
  width: 50px;
  text-align: center;
}

.col-level {
  width: 80px;
  text-align: center;
}

.col-locale {
  width: 70px;
  text-align: center;
}

.col-enrollment {
  width: 80px;
  text-align: center;
}

.col-admit {
  width: 60px;
  text-align: center;
}

.col-sat {
  width: 55px;
  text-align: center;
}

.col-temp {
  width: 65px;
  text-align: center;
}

.col-cost {
  width: 80px;
  text-align: center;
}

.col-grads {
  width: 50px;
  text-align: center;
}

.col-status {
  width: 120px;
  text-align: left;
  cursor: default;
}

/* School name + location stacked */
.school-name-link {
  display: block;
  font-weight: 600;
  color: var(--color-dark-navy);
  text-decoration: none;
  line-height: 1.3;
}

.school-name-link:hover {
  color: var(--color-medium-blue);
  text-decoration: underline;
}

.school-location {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-light-blue-grey);
  line-height: 1.3;
}

/* Heart button in table */
.heart-cell-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  padding: 0.125rem;
  transition: transform 0.15s;
  line-height: 1;
}

.heart-cell-btn:hover {
  transform: scale(1.15);
}

/* Temperature colors */
.temp-mild { color: #2b8a3e; font-weight: 600; }
.temp-moderate { color: #e67700; font-weight: 600; }
.temp-cold { color: #1864ab; font-weight: 600; }

/* ========================================
   Pagination
   ======================================== */
.table-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--color-muted-blue-grey);
}

.pagination-info {
  font-weight: 500;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 2px;
}

.page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 0.5rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 6px;
  background: white;
  color: var(--color-muted-blue-grey);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.page-btn:hover:not(:disabled):not(.active) {
  background: var(--color-very-light-blue-grey);
  border-color: var(--color-light-blue-grey);
}

.page-btn.active {
  background: var(--color-dark-navy);
  color: white;
  border-color: var(--color-dark-navy);
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.page-ellipsis {
  padding: 0 0.25rem;
  color: var(--color-light-blue-grey);
}

.pagination-size select {
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 6px;
  font-size: 0.8125rem;
  color: var(--color-muted-blue-grey);
  background: white;
  cursor: pointer;
}

/* ========================================
   Conference Popover Multi-Select
   (kept from previous implementation)
   ======================================== */
.conference-dropdown {
  position: fixed;
  z-index: 10000;
  display: none;
  width: 340px;
  max-height: 420px;
  overflow-y: auto;
  background: white;
  border: 1px solid var(--color-light-blue);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.conference-dropdown.open {
  display: block;
}

.conference-search {
  padding: 8px 10px;
  border-bottom: 1px solid var(--color-very-light-blue-grey);
}

.conference-search input {
  width: 100%;
  padding: 6px 10px;
  font-size: 0.8125rem;
  border: 1px solid var(--color-light-blue);
  border-radius: 6px;
}

.conference-search input:focus {
  outline: none;
  border-color: var(--color-dark-navy);
  box-shadow: 0 0 0 2px rgba(17, 45, 78, 0.08);
}

.conference-dropdown-header {
  padding: 6px 10px;
  border-bottom: 1px solid var(--color-very-light-blue-grey);
  background: var(--color-off-white);
}

.conference-dropdown-header label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark-navy);
  cursor: pointer;
  margin: 0;
}

.conference-dropdown-header input[type="checkbox"] {
  width: 0.875rem;
  height: 0.875rem;
  cursor: pointer;
  accent-color: var(--color-dark-navy);
}

.conference-group {
  border-bottom: 1px solid var(--color-very-light-blue-grey);
}

.conference-group:last-of-type {
  border-bottom: none;
}

.conference-group.hidden {
  display: none;
}

.conference-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: var(--color-off-white);
}

.conference-group-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-muted-blue-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.conference-quick-btn {
  padding: 2px 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-medium-blue);
  background: white;
  border: 1px solid var(--color-medium-blue);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.conference-quick-btn:hover {
  background: var(--color-medium-blue);
  color: white;
}

.conference-quick-btn.clear-mode {
  color: var(--color-muted-blue-grey);
  border-color: var(--color-light-blue-grey);
}

.conference-quick-btn.clear-mode:hover {
  background: var(--color-muted-blue-grey);
  color: white;
}

.conference-group-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 8px;
  padding: 4px 10px 6px;
}

.conference-option {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--color-dark-navy);
  cursor: pointer;
  padding: 2px 3px;
  border-radius: 3px;
  margin: 0;
}

.conference-option:hover {
  background: var(--color-very-light-blue-grey);
}

.conference-option.hidden {
  display: none;
}

.conference-option input[type="checkbox"] {
  width: 0.75rem;
  height: 0.75rem;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--color-dark-navy);
}

.conference-no-results {
  padding: 12px 10px;
  font-size: 0.8125rem;
  color: var(--color-muted-blue-grey);
  text-align: center;
  display: none;
}

/* ========================================
   Not Interested Icon Styling
   ======================================== */
.text-not-interested {
  color: var(--color-not-interested) !important;
}

.bi-x-circle-fill.text-not-interested {
  color: var(--color-not-interested);
}

.not-interested-btn {
  transition: all 0.2s;
}

.not-interested-btn:hover {
  transform: scale(1.1);
}

.not-interested-summary {
  color: var(--color-muted-blue-grey);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--color-off-white);
  border-left: 3px solid var(--color-not-interested);
  border-radius: 4px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 767px) {
  .top-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .division-pills {
    justify-content: center;
  }

  .top-bar-conference,
  .filters-trigger-btn {
    width: 100%;
  }

  .conference-trigger-btn {
    width: 100%;
    justify-content: space-between;
  }

  .filters-trigger-btn {
    justify-content: center;
  }

  .filter-drawer {
    max-width: 100%;
  }

  .schools-table {
    font-size: 0.75rem;
  }

  .schools-table thead th {
    font-size: 0.625rem;
    padding: 0.5rem 0.25rem;
  }

  .schools-table tbody td {
    padding: 0.375rem 0.25rem;
  }

  /* Hide less-important columns on mobile */
  .col-locale,
  .col-sat,
  .col-temp,
  .col-grads,
  .col-status {
    display: none;
  }

  .table-pagination {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

