/* ==============================
   Detail Pages
/* ============================== */

.detail-section { padding: 32px 0 64px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .detail-grid { grid-template-columns: 1fr; }
}

.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}

.info-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-bg);
}

.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }

.info-card p { font-size: 0.92rem; line-height: 1.8; color: var(--text-secondary); }

.sidebar-card h3 { border-bottom: none; padding-bottom: 0; }

.info-list dt {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.info-list dt:first-child { margin-top: 0; }

.info-list dd {
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-top: 2px;
}

.warning-card {
  background: #fffbeb;
  border-color: #fde68a;
}

.warning-card h2 { color: #92400e; border-bottom-color: #fde68a; }

/* ==============================
   Employment & Industry & Positions
/* ============================== */

.employment-card { border-left: 4px solid #8b5cf6; }
.employment-card h2 { color: #6d28d9; border-bottom-color: #ede9fe; }

.industry-card { border-left: 4px solid #f59e0b; }
.industry-card h2 { color: #b45309; border-bottom-color: #fef3c7; }

.positions-card { border-left: 4px solid #ec4899; }
.positions-card h2 { color: #be185d; border-bottom-color: #fce7f3; }

.tag-company {
  background: #ede9fe;
  color: #5b21b6;
  border: 1px solid #c4b5fd;
  font-size: 0.78rem;
}

.tag-industry {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.tag-position {
  background: #fce7f3;
  color: #9d174d;
  border: 1px solid #fbcfe8;
}

/* ==============================
   考公考编分析
/* ============================== */

.exam-card {
  border-left: 4px solid #059669;
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

.exam-card h2 {
  color: #065f46;
  border-bottom-color: #a7f3d0;
}

.exam-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.exam-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.exam-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 100px;
}

.exam-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
}

.exam-badge-yes {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.exam-badge-warn {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.exam-badge-no {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.exam-diff {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
}

.exam-diff-easy {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.exam-diff-medium {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

.exam-diff-hard {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.exam-detail {
  padding: 14px 16px;
  background: rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.exam-detail p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 6px;
}

.stats-card { background: var(--primary-bg); border-color: rgba(59,130,246,0.15); }

.stats-row {
  display: flex;
  gap: 24px;
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 16px;
  background: white;
  border-radius: var(--radius-md);
}

.stat-box.wide { max-width: none; }

.stat-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==============================
   School Header
/* ============================== */

.school-header-content { display: flex; justify-content: space-between; align-items: start; gap: 24px; }

/* ==============================
   Chart
/* ============================== */

.chart-container {
  margin: 20px 0;
  padding: 16px;
  background: white;
  border-radius: var(--radius-md);
  min-height: 300px;
}

/* ==============================
   Majors
/* ============================== */

.major-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) { .major-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .major-grid { grid-template-columns: 1fr; } }

.major-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none !important;
  color: var(--text-primary) !important;
  transition: all var(--transition);
}

.major-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.major-category { margin-bottom: 10px; }

.major-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.major-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; }

.major-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.related-majors { display: flex; flex-wrap: wrap; gap: 12px; }

.major-tag {
  display: inline-flex;
  flex-direction: column;
  padding: 12px 20px;
  background: var(--primary-bg);
  border-radius: var(--radius-md);
  color: var(--primary) !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.major-tag:hover { background: #dbeafe; }
.major-tag span { font-weight: 400; font-size: 0.78rem; color: var(--text-muted); }

/* ==============================
   Recommend Page
/* ============================== */

.recommend-section { padding: 32px 0 64px; }

.recommend-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .recommend-layout { grid-template-columns: 1fr; }
}

.recommend-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 88px;
}

.recommend-form-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  resize: vertical;
  outline: none;
  transition: var(--transition);
}

.form-textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.result-group { margin-bottom: 28px; }

.result-group h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}

.result-group.rush h3 { border-color: var(--danger); }
.result-group.match h3 { border-color: var(--accent); }
.result-group.safe h3 { border-color: var(--success); }

.result-cards { display: flex; flex-direction: column; gap: 10px; }

.result-card {
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none !important;
  transition: all var(--transition);
}

.result-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-bg);
}

.result-school {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.result-school strong { color: var(--text-primary); font-size: 1rem; }

.result-score {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.result-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-top: 6px;
  display: inline-block;
}

/* ==============================
   School + Major Cards
/* ============================== */

.school-major-card {
  padding: 14px 18px !important;
}

.school-major-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.school-major-card .result-school {
  margin-bottom: 0;
}

.school-major-card .result-scores {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.score-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #f1f5f9;
  color: var(--text-secondary);
  white-space: nowrap;
}

.score-badge.score-rush {
  background: #fef3c7;
  color: #92400e;
}

.score-badge.score-match {
  background: #dbeafe;
  color: #1e40af;
}

.score-badge.score-safe {
  background: #d1fae5;
  color: #065f46;
}

.card-majors {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 6px 0 4px;
  font-size: 0.85rem;
}

.majors-label {
  color: var(--text-secondary);
  white-space: nowrap;
  padding-top: 2px;
  font-weight: 500;
  font-size: 0.82rem;
}

.major-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.major-tag {
  display: inline-block;
  padding: 1px 8px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 4px;
  font-size: 0.78rem;
  line-height: 1.6;
  white-space: nowrap;
}

.major-tag.more {
  background: #f8fafc;
  color: var(--text-muted);
  border-color: #e2e8f0;
  font-style: italic;
}

.major-tag.empty {
  background: #fafafa;
  color: var(--text-muted);
  border-color: #eee;
}

.badge-count {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 6px;
}

@media (prefers-color-scheme: dark) {
  .result-card { background: #1e293b; }
  .result-card:hover { border-color: var(--primary); }
  .major-tag { background: #1a3a2a; color: #86efac; border-color: #166534; }
  .major-tag.more { background: #1e293b; color: #64748b; border-color: #334155; }
  .score-badge { background: #334155; color: #cbd5e1; }
  .score-badge.score-rush { background: #451a03; color: #fbbf24; }
  .score-badge.score-match { background: #1e3a5f; color: #60a5fa; }
  .score-badge.score-safe { background: #064e3b; color: #34d399; }
}

.disclaimer-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #78350f;
  line-height: 1.6;
}

.recommend-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.recommend-info p:last-child { margin-bottom: 0; }

/* ==============================
   Career Page
/* ============================== */

.career-section { padding: 32px 0 64px; }

.career-search-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
  border: 1px solid rgba(0,0,0,0.06);
}

.career-search-card h2 { margin-bottom: 20px; }

.career-search-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.career-search-form .form-input { flex: 1; }

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 900px) { .career-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .career-grid { grid-template-columns: 1fr; } }

.career-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none !important;
  color: var(--text-primary) !important;
  transition: all var(--transition);
}

.career-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.career-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.career-category {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.career-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.career-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==============================
   Risk Check
/* ============================== */

.risk-section { padding: 32px 0 64px; }

.risk-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .risk-layout { grid-template-columns: 1fr; }
}

.risk-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 88px;
}

.risk-form-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.risk-report-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.risk-report-card.safe {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.risk-report-card.warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.risk-report-card h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.risk-report-card.safe h3 { color: #065f46; }
.risk-report-card.warning h3 { color: #92400e; }

.risk-list {
  padding-left: 20px;
}

.risk-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) { .quick-info { grid-template-columns: 1fr; } }

/* ==============================
   Animations
/* ============================== */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeIn 0.6s ease; }
.feature-card { animation: fadeIn 0.5s ease; }
.school-card { animation: fadeIn 0.4s ease; }

/* ==============================
   Scrollbar
/* ============================== */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ==============================
   2026 Policy Notice
/* ============================== */

.policy-notice-section {
  padding: 2rem 0;
}

.policy-notice-box {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #fef9e7 0%, #fef3e2 100%);
  border: 2px solid #fbbf24;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15);
}

.policy-notice-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.policy-notice-content h3 {
  color: #92400e;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.policy-notice-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.policy-notice-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #78350f;
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(251, 191, 36, 0.25);
}

.policy-notice-content ul li:last-child {
  border-bottom: none;
}

.policy-notice-content ul li::before {
  content: "›";
  position: absolute;
  left: 4px;
  color: #f59e0b;
  font-size: 1.3rem;
  font-weight: 700;
}

.policy-source {
  font-size: 0.85rem;
  color: #a16207;
  font-style: italic;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .policy-notice-box {
    flex-direction: column;
    padding: 20px;
  }
}

/* ==============================
   Header User Actions
/* ============================== */

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 5px 14px;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm.btn-primary {
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.btn-sm.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-sm.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color, #d1d5db);
}

.btn-sm.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.user-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 4px !important;
  border-color: var(--primary-light) !important;
  color: var(--primary) !important;
}

.user-avatar-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ==============================
   Auth Pages (Login / Register)
/* ============================== */

.auth-section {
  padding: 60px 0;
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.auth-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.auth-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.auth-alert.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-icon {
  font-size: 1.1rem;
}

.auth-form .form-group {
  margin-bottom: 18px;
}

.auth-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.auth-form .required {
  color: #ef4444;
}

.auth-form .form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition);
  box-sizing: border-box;
}

.auth-form .form-input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.auth-form .btn-block {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  margin-top: 6px;
}

.form-agreement {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.form-agreement label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.form-agreement input[type="checkbox"] {
  accent-color: var(--primary);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
}

.link:hover {
  text-decoration: underline;
}

/* ==============================
   Profile Page
/* ============================== */

.profile-section {
  padding: 30px 0 60px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

.profile-sidebar {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.avatar-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 12px;
}

.profile-sidebar h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.profile-username {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.profile-since {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.profile-stats {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.profile-stats .stat-item {
  flex: 1;
  text-align: center;
}

.profile-stats .stat-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.profile-stats .stat-lbl {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-main .info-card {
  padding: 28px;
}

.profile-main .info-card h2 {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.profile-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.profile-form .form-group {
  margin-bottom: 16px;
}

.profile-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.profile-form .form-input,
.profile-form .form-select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: white;
  box-sizing: border-box;
}

.profile-form .form-input:focus,
.profile-form .form-select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-link {
  display: block;
  padding: 12px 16px;
  background: var(--primary-bg);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.quick-link:hover {
  background: #dbeafe;
  transform: translateY(-1px);
}

.quick-link.logout {
  color: #dc2626;
  background: #fef2f2;
}

.quick-link.logout:hover {
  background: #fecaca;
}

/* ==============================
   Floating Customer Service
/* ============================== */

.float-service {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 1000;
}

.float-service-toggle {
  width: auto;
  height: 48px;
  border-radius: 24px;
  padding: 0 18px;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.float-service-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(30, 64, 175, 0.4);
}

.service-icon {
  line-height: 1;
}

.service-label {
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.float-service-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.float-service-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.service-panel-header h4 {
  font-size: 1rem;
  font-weight: 600;
}

.service-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  padding: 0;
  line-height: 1;
}

.service-close:hover {
  opacity: 1;
}

.service-panel-body {
  padding: 20px;
}

.service-tip {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: center;
}

.service-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all var(--transition);
}

.service-btn:hover {
  transform: translateX(4px);
}

.service-btn.wechat-btn {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.service-btn.wechat-btn:hover {
  background: #dcfce7;
}

.service-btn.qq-btn {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.service-btn.qq-btn:hover {
  background: #dbeafe;
}

.service-btn-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-btn strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.service-btn small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.service-wx-qr {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.service-wx-qr p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.wx-qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 2px dashed #e2e8f0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.wx-qr-placeholder span:first-child {
  font-size: 2rem;
}

.wx-qr-img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 4px;
  border: 1px solid #e2e8f0;
}

.wx-id {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ==============================
   Footer Contact
/* ============================== */

.footer-contact {
  margin-top: 12px;
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.footer-contact p {
  margin: 0;
}

/* ==============================
   Responsive
/* ============================== */

@media (max-width: 768px) {
  .header-actions {
    display: none;
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-form .form-row {
    grid-template-columns: 1fr;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 28px 20px;
  }

  .float-service {
    bottom: 80px;
    right: 16px;
  }

  .float-service-panel {
    width: 280px;
    right: 0;
  }
}

/* ==============================
   Admin Dashboard
/* ============================== */

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat-card {
  background: white;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.admin-stat-icon { font-size: 2rem; flex-shrink: 0; }
.admin-stat-body { flex: 1; }

.admin-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.admin-stat-lbl {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.admin-stat-sub {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 600;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-card {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  overflow: hidden;
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.admin-card-header h3 { font-size: 1rem; font-weight: 600; }

.admin-card-body { padding: 0; overflow-x: auto; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th {
  text-align: left;
  padding: 10px 16px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
  font-size: 0.8rem;
}

.admin-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #f8fafc;
  color: var(--text-primary);
}

.admin-table tr:hover td { background: #f8fafc; }

.time-cell { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }
.amount-cell { font-weight: 700; color: var(--primary); }

.empty-cell {
  text-align: center;
  padding: 24px !important;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.success { background: #d1fae5; color: #065f46; }
.status-badge.pending { background: #fef3c7; color: #92400e; }

.prov-bar-chart { padding: 12px 16px; }

.prov-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.prov-bar-label {
  width: 60px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: right;
  flex-shrink: 0;
}

.prov-bar-track {
  flex: 1;
  height: 22px;
  background: #f1f5f9;
  border-radius: 11px;
  position: relative;
  overflow: hidden;
}

.prov-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: 11px;
  min-width: 4px;
}

.prov-bar-val {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mini-chart { padding: 16px; }

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 8px;
  height: 160px;
  padding-top: 8px;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.bar-col {
  width: 100%;
  max-width: 36px;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  border-radius: 6px 6px 0 0;
  min-height: 4px;
}

.bar-col-alt { background: linear-gradient(180deg, #34d399, #10b981); }

.bar-label { font-size: 0.7rem; color: var(--text-muted); }
.bar-val { font-size: 0.75rem; font-weight: 700; color: var(--text-primary); }

.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card {
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  width: 400px;
  max-width: 90vw;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-header h3 { font-size: 1.15rem; }
.modal-close { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-muted); }

.modal-form .form-group { margin-bottom: 14px; }
.modal-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; color: var(--text-secondary); }
.modal-form .form-input,
.modal-form .form-select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.modal-form .form-input:focus,
.modal-form .form-select:focus { outline: none; border-color: var(--primary-light); }

@media (max-width: 900px) {
  .admin-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr; }
}

/* ==============================
   行业匹配专业卡片
/* ============================== */
.industry-match-card { border-left: 4px solid #059669; }
.industry-match-card h2 { color: #059669; }
.match-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; }

.industry-major-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin: 20px 0 32px;
}

.industry-major-card {
  display: block;
  background: var(--bg-primary);
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.industry-major-card:hover {
  border-color: #059669;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.12);
  transform: translateY(-2px);
}

.imc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.imc-category {
  font-size: 0.75rem;
  background: #d1fae5;
  color: #065f46;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 600;
}
.industry-major-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }
.industry-major-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }

.imc-tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 10px; }
.imc-tag-label { font-size: 0.78rem; color: var(--text-muted); }

.imc-footer {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

/* ==============================
   专业搜索联想
/* ============================== */
.suggest-wrapper { position: relative; }

.suggest-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border: 1.5px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 360px;
  overflow-y: auto;
}

.suggest-dropdown.active { display: block; }

.suggest-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}

.suggest-item:last-child { border-bottom: none; border-radius: 0 0 10px 10px; }
.suggest-item:hover { background: #f0fdf4; }

.suggest-name { font-size: 0.92rem; font-weight: 600; }
.suggest-cat { font-size: 0.78rem; color: var(--text-muted); background: #f1f5f9; padding: 2px 8px; border-radius: 10px; }

@media (max-width: 600px) {
  .industry-major-grid { grid-template-columns: 1fr; }
}

/* ==============================
   职业搜索结果详情卡片
/* ============================== */
.career-result-list { display: flex; flex-direction: column; gap: 24px; margin: 20px 0 32px; }

.career-result-card {
  background: var(--bg-primary);
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow 0.2s ease;
}

.career-result-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.crc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
}

.crc-title-row { display: flex; align-items: center; gap: 12px; }
.crc-title-row h3 { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); }

.crc-detail-link {
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--primary-bg);
  transition: all 0.15s ease;
}

.crc-detail-link:hover { background: var(--primary); color: white; }

.crc-section { margin-bottom: 18px; }
.crc-section:last-child { margin-bottom: 0; }

.crc-section h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.crc-section p { font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary); }

.crc-work-content {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-secondary);
  background: #f8fafc;
  border-radius: 8px;
  padding: 14px 16px;
}

.crc-meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.crc-meta-box {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 16px;
}

.crc-meta-icon { font-size: 1.3rem; }

.crc-meta-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.crc-meta-value {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

.crc-major-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.crc-major-tags .tag { font-size: 0.82rem; cursor: pointer; }
.crc-major-tags .tag:hover { opacity: 0.8; }

@media (max-width: 600px) {
  .crc-header { flex-direction: column; gap: 10px; }
  .crc-meta-row { flex-direction: column; }
  .crc-meta-box { min-width: auto; }
}

/* ==============================
   Phase 1: 院校深度信息样式
/* ============================== */

/* 行业准入徽章（页面顶部标签） */
.tag-industry-badge {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  font-size: 0.78rem;
  padding: 4px 10px;
  cursor: help;
}

.tag-phd {
  background: #ede9fe;
  color: #5b21b6;
  border: 1px solid #c4b5fd;
  font-size: 0.78rem;
  vertical-align: middle;
}

/* 原部属院校横幅 */
.ministry-info-banner {
  margin-top: 12px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  border-radius: 8px;
  border: 1px solid #bfdbfe;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ministry-icon { font-size: 1.2rem; }

/* 侧边栏：转专业详情卡 */
.transfer-deep-card { border-left: 4px solid #f59e0b; }
.transfer-deep-card h3 { color: #92400e; }

/* 侧边栏：保研质量卡 */
.graduate-card { border-left: 4px solid #8b5cf6; }
.graduate-card h3 { color: #6d28d9; }

.graduate-card .warn-text { font-size: 0.82rem; margin-top: 10px; padding-top: 10px; border-top: 1px dashed #e5e7eb; }
.graduate-card .success-text {
  font-size: 0.82rem;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e5e7eb;
  color: #059669 !important;
  font-weight: 600;
}

/* 侧边栏：行业准入资质卡 */
.industry-badge-card {
  border-left: 4px solid #059669;
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
}
.industry-badge-card h3 { color: #065f46; }

.industry-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.industry-badge-item {
  padding: 8px 10px;
  background: #f0fdf4;
  border-radius: 6px;
  border: 1px solid #bbf7d0;
}
.industry-badge-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #065f46;
}
.industry-badge-note {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 3px;
  line-height: 1.5;
}

/* 侧边栏：原部属院校卡 */
.ministry-card { border-left: 4px solid #3b82f6; }
.ministry-card h3 { color: #1e40af; }
.ministry-note {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 10px;
  padding: 8px 10px;
  background: #eff6ff;
  border-radius: 6px;
  line-height: 1.6;
}

/* 主栏：分校区说明 */
.branch-campus-note {
  margin-top: 16px;
  padding: 16px 18px;
  background: #fffbeb;
  border-radius: var(--radius-md);
  border: 1px solid #fde68a;
}
.branch-campus-note h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 8px;
}
.branch-campus-note p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* 与 info-card 内的 h2 平齐的分校区标题 */
.info-card .branch-campus-note h4 { font-size: 0.95rem; }

/* 警告与成功文字 */
.warn-text {
  font-size: 0.88rem !important;
  color: #dc2626 !important;
  font-weight: 600;
  line-height: 1.6;
}
.success-text {
  font-size: 0.88rem !important;
  color: #059669 !important;
  font-weight: 600;
  line-height: 1.6;
}

/* ==============================
   Phase 2: 专业深度信息样式
/* ============================== */

/* 含金量表格 */
.major-quality-table th { white-space: nowrap; }
.major-quality-table td { vertical-align: middle; }
.major-quality-table .row-coop { background: #f0fdf4; }

/* 质量徽章 */
.quality-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 1px 2px;
  white-space: nowrap;
  font-weight: 600;
}
.quality-key { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.quality-phd { background: #ede9fe; color: #5b21b6; border: 1px solid #c4b5fd; }
.quality-coop { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.quality-normal { background: #f3f4f6; color: #9ca3af; border: 1px solid #e5e7eb; }

.quality-legend {
  margin-top: 12px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 2;
  color: var(--text-muted);
}
.quality-legend .quality-badge { margin-right: 4px; vertical-align: middle; }

/* 信息提示 */
.info-tip {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #f0f9ff;
  border-radius: 6px;
  border-left: 3px solid #3b82f6;
}

/* 中外合作办学卡片 */
.coop-section-card { border: 1px solid #a7f3d0; border-left: 4px solid #059669; }
.coop-section-card h2 { color: #065f46; }

.coop-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.coop-item {
  padding: 14px 16px;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
}
.coop-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.coop-header .link { font-size: 0.95rem; }
.coop-header .tag { font-size: 0.72rem; }
.coop-detail {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.85rem;
  line-height: 1.6;
}
.coop-label {
  color: var(--text-muted);
  font-weight: 600;
  min-width: 100px;
  flex-shrink: 0;
}
.coop-cost {
  color: #dc2626;
  font-weight: 700;
}
.coop-note {
  color: #6b7280;
  font-style: italic;
}

/* 中外合作大学 - V4新增 */
.level-中外合作大学 { background: #f0fdf4; color: #166534; border: 1px solid #86efac; }
/* 军事院校 - V4新增 */
.level-军事院校 { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* 历年录取分数线优化 */
.badge-sub { font-size: 0.75rem; font-weight: 400; color: #666; background: #f0f0f0; padding: 2px 8px; border-radius: 10px; vertical-align: middle; }
.score-note { font-size: 0.85rem; color: #888; margin-top: -0.5rem; margin-bottom: 1rem; line-height: 1.5; padding: 8px 12px; background: #fafafa; border-left: 3px solid #3b82f6; border-radius: 4px; }

/* 分数线查询表单标签 */
.filter-label { display: block; font-size: 0.75rem; color: #666; margin-bottom: 4px; font-weight: 500; }

/* 院校筛选标签 */
.filter-group { min-width: 140px; }
@media (max-width: 768px) { .filter-group { min-width: 100%; } }

/* 专业质量标识优化 */
.quality-cell { min-width: 100px; }
.quality-none { background: #f3f4f6; color: #9ca3af; font-size: 0.75rem; padding: 2px 8px; border-radius: 4px; }
