:root {
  --navy: #2B3A4A;
  --navy-dark: #1E3A5C;
  --accent: #4A90C2;
  --bg-light-1: #D7EAF9;
  --bg-light-2: #E4EEFB;
  --bg-light-3: #F2F5FC;
  --danger: #B3261E;
  --ok: #1A7A3C;
  --confirmed-bg: #EDE3F3;
  --confirmed-text: #7A4F94;
  --arrived-bg: #F3E5CC;
  --arrived-text: #B87A34;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-light-3);
  color: var(--navy);
  padding-bottom: 72px; /* chừa chỗ cho thanh tab dưới cùng */
}

.app-header {
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}
.app-header .who { display: flex; align-items: center; gap: 10px; min-width: 0; }
.app-header .who img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; flex-shrink: 0; }
.app-header h1 { font-size: 15.5px; margin: 0; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-header button.link { background: none; border: none; color: var(--bg-light-1); font-size: 13px; cursor: pointer; opacity: 0.9; flex-shrink: 0; }

.container { max-width: 480px; margin: 0 auto; padding: 16px; }

.card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(43, 58, 74, 0.08);
}

label { display: block; font-size: 14px; margin: 12px 0 4px; color: var(--navy); }
input, textarea, select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--bg-light-1);
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  color: var(--navy);
}
textarea { resize: vertical; min-height: 70px; }

button.primary {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
}
button.primary:disabled { opacity: 0.6; cursor: default; }
button.secondary {
  width: 100%;
  padding: 12px;
  background: var(--bg-light-2);
  color: var(--navy);
  border: none;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
}

.msg-error { color: var(--danger); font-size: 14px; margin-top: 8px; }
.msg-ok { color: var(--ok); font-size: 14px; margin-top: 8px; }

.tabbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--bg-light-1);
  display: flex;
  z-index: 10;
}
#fab-zalo {
  position: fixed;
  right: 16px; bottom: 88px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(43, 58, 74, 0.45);
  z-index: 15;
  transition: transform 0.15s ease;
}
#fab-zalo svg { width: 24px; height: 24px; }
#fab-zalo:active { transform: scale(0.94); }

/* ---------- Gợi ý "Thêm vào màn hình chính" ---------- */
#pwa-install-banner {
  position: sticky; top: 0; z-index: 40; display: flex; align-items: center; gap: 10px;
  background: var(--navy); color: #fff; padding: 10px 14px;
}
#pwa-install-icon { font-size: 20px; flex-shrink: 0; }
#pwa-install-text { flex: 1; min-width: 0; }
#pwa-install-text strong { display: block; font-size: 13px; }
#pwa-install-text p { margin: 2px 0 0; font-size: 12px; opacity: 0.85; line-height: 1.35; }
#btn-pwa-install-action {
  flex-shrink: 0; background: var(--accent); color: #fff; border: none; border-radius: 999px;
  padding: 8px 16px; font-size: 12.5px; font-weight: 600; cursor: pointer;
}
#btn-pwa-install-close {
  flex-shrink: 0; background: none; border: none; color: rgba(255, 255, 255, 0.7);
  font-size: 17px; cursor: pointer; padding: 4px; line-height: 1;
}
.tabbar button {
  flex: 1;
  padding: 9px 0 8px;
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-dark);
  opacity: 0.6;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.tab-icon-wrap {
  width: 32px; height: 32px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.tabbar button svg { width: 22px; height: 22px; }
.tabbar button.active { color: var(--accent); font-weight: 700; opacity: 1; }
.tabbar button.active .tab-icon-wrap { background: var(--bg-light-1); transform: translateY(-1px); }

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.badge-staff { background: var(--bg-light-1); color: var(--navy-dark); }
.badge-customer { background: #F5E9D7; color: #7A5A1A; }
.badge-scheduled { background: var(--bg-light-1); color: var(--navy-dark); }
.badge-completed { background: #D9F0DE; color: var(--ok); }
.badge-cancelled, .badge-no_show { background: #F5D9D7; color: var(--danger); }

.photo-grid { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.photo-grid img {
  width: 84px; height: 84px; object-fit: cover; border-radius: 8px;
  background: var(--bg-light-2);
}

.timeline-item { border-left: 3px solid var(--bg-light-1); padding-left: 12px; margin-bottom: 18px; }
.timeline-date { font-size: 13px; color: var(--navy-dark); font-weight: 600; margin-bottom: 4px; }

.modal-backdrop {
  position: fixed; inset: 0; background: rgba(30, 58, 92, 0.45);
  display: flex; align-items: flex-end; justify-content: center; z-index: 20;
}
.modal-sheet {
  background: #fff; width: 100%; max-width: 480px; border-radius: 16px 16px 0 0;
  max-height: 85vh; display: flex; flex-direction: column; overflow: hidden;
}
.modal-sheet h2 { margin: 20px 20px 0; font-size: 17px; flex-shrink: 0; }
.modal-sheet form { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.modal-scroll { padding: 8px 20px 4px; overflow-y: auto; flex: 1; min-height: 0; }
.modal-actions {
  flex-shrink: 0; padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--bg-light-1); background: #fff;
}
.modal-actions button.primary { margin-top: 0; }

.empty-state { text-align: center; color: var(--navy-dark); opacity: 0.7; padding: 32px 0; font-size: 14px; }

.empty-hero { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 36px 20px 28px; }
.empty-hero .blob {
  width: 84px; height: 84px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, #1E3A5C, #2B3A4A);
}
.empty-hero .blob svg { width: 36px; height: 36px; color: #fff; }
.empty-hero h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0; }
.empty-hero p { font-size: 13px; color: var(--navy-dark); opacity: 0.75; margin: 0; max-width: 26ch; }

.serif { font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Noto Serif", Georgia, serif; }

/* ---------- Hoạ tiết thương hiệu — Sóng Suối (banner đậm, vd chúc mừng sinh nhật) ---------- */
.motif-wave {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #1E3A5C 0%, #2B3A4A 100%);
}
.motif-wave svg { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; display: block; }
@media (prefers-reduced-motion: no-preference) {
  .motif-wave svg .wave-a { animation: wave-drift-a 18s ease-in-out infinite alternate; }
  .motif-wave svg .wave-b { animation: wave-drift-b 22s ease-in-out infinite alternate; }
}
@keyframes wave-drift-a { from { transform: translateX(0); } to { transform: translateX(-3%); } }
@keyframes wave-drift-b { from { transform: translateX(0); } to { transform: translateX(3%); } }

/* ---------- Profile ---------- */
.profile-avatar-wrap { position: relative; width: 88px; height: 88px; margin: 4px auto 0; }
.profile-avatar-wrap img, .profile-avatar-wrap .avatar-chip { width: 88px; height: 88px; object-fit: cover; }
.profile-avatar-label {
  display: inline-block; margin-top: 10px; padding: 8px 18px; border-radius: 999px;
  background: var(--bg-light-2); color: var(--navy); cursor: pointer; font-size: 13px; font-weight: 600;
}
.profile-info-list { margin-top: 14px; text-align: left; border-top: 1px solid var(--bg-light-1); }
.profile-info-row {
  display: flex; justify-content: space-between; padding: 10px 2px;
  border-bottom: 1px solid var(--bg-light-1); font-size: 13.5px;
}
.profile-info-row span:first-child { color: var(--navy-dark); }
.profile-info-row span:last-child { color: var(--navy); font-weight: 600; }

/* ---------- Màn hình Đăng nhập ---------- */
.login-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 26px;
}
.login-shell .wave-decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.login-shell .wave-top { position: absolute; top: 0; left: 0; width: 100%; height: 230px; }
.login-shell .wave-bottom { position: absolute; bottom: 0; left: 0; width: 100%; height: 170px; }
.login-body { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.login-brand { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 0; }
.login-logo { width: 168px; margin: 0 0 18px; animation: logo-intro 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes logo-intro {
  from { opacity: 0; transform: scale(0.88) translateY(6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .login-logo { animation: none; }
}
.login-slogan { font-size: 17px; line-height: 1.5; margin: 0; color: var(--navy); max-width: 26ch; font-weight: 500; }
.login-desc { font-size: 13.5px; line-height: 1.55; color: var(--navy-dark); margin: 0 0 24px; max-width: 30ch; }
.login-card { width: 100%; max-width: 380px; text-align: left; margin-bottom: 4px; }

/* ---------- Màn hình Đồng ý thu thập dữ liệu ---------- */
.consent-shell { padding: 30px 22px 26px; min-height: 100vh; display: flex; flex-direction: column; }
.consent-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--bg-light-1); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0;
}
.consent-icon svg { width: 27px; height: 27px; }
.consent-shell h1 { font-size: 20px; margin: 0 0 12px; color: var(--navy); font-weight: 600; }
.consent-check-row {
  display: flex; gap: 10px; align-items: flex-start; margin-top: auto; margin-bottom: 4px;
}
.consent-check-row input[type="checkbox"] { width: 19px; height: 19px; margin: 1px 0 0; accent-color: var(--accent); flex-shrink: 0; }
.consent-check-row label { margin: 0; font-size: 13.5px; font-weight: normal; color: var(--navy); line-height: 1.5; }

/* ---------- Danh sách lịch hẹn ---------- */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--navy-dark); opacity: 0.65; margin: 18px 0 10px;
}
.section-label:first-child { margin-top: 2px; }

.appt-card {
  display: flex; gap: 12px; align-items: flex-start; background: #fff; border-radius: 13px;
  padding: 12px; margin-bottom: 10px; box-shadow: 0 1px 3px rgba(43, 58, 74, 0.08);
}
.appt-card.muted { opacity: 0.7; box-shadow: none; border: 1px solid var(--bg-light-1); }
.date-chip {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: var(--bg-light-1);
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--navy-dark);
}
.date-chip .d { font-size: 15px; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.date-chip .m { font-size: 9px; font-weight: 600; text-transform: uppercase; margin-top: 1px; }
.appt-main { flex: 1; min-width: 0; }
.appt-main .svc { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.appt-main .when { font-size: 11.5px; color: var(--navy-dark); opacity: 0.8; display: flex; align-items: center; gap: 4px; }
.appt-main .when svg { width: 11px; height: 11px; flex-shrink: 0; }
.status-pill { flex-shrink: 0; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.avatar-chip {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: #fff; font-weight: 800; flex-shrink: 0;
  letter-spacing: -.02em;
}

.status-pill.scheduled { background: var(--bg-light-1); color: var(--navy-dark); }
.status-pill.confirmed { background: var(--confirmed-bg); color: var(--confirmed-text); }
.status-pill.arrived { background: var(--arrived-bg); color: var(--arrived-text); }
.status-pill.completed { background: #D9F0DE; color: var(--ok); }
.status-pill.cancelled, .status-pill.no_show { background: #F5D9D7; color: var(--danger); }

/* ---------- Tiến trình da: dòng thời gian ---------- */
.add-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 13px;
  border-radius: 999px; background: var(--accent); color: #fff; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; margin-bottom: 18px;
}
.add-btn svg { width: 15px; height: 15px; }

.timeline-rail { position: relative; padding-left: 20px; }
.timeline-rail::before {
  content: ""; position: absolute; left: 6px; top: 4px; bottom: 4px; width: 2px; background: var(--bg-light-1);
}
.timeline-entry { position: relative; margin-bottom: 16px; }
.timeline-entry::before {
  content: ""; position: absolute; left: -20px; top: 4px; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px var(--bg-light-3);
}
.timeline-entry.customer::before { background: #C9A24B; }

.entry-card {
  background: #fff; border-radius: 20px; padding: 15px; box-shadow: 0 6px 18px -10px rgba(43, 58, 74, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.entry-card:active { transform: scale(0.98); box-shadow: 0 2px 8px -4px rgba(43, 58, 74, 0.22); }

/* ---------- Dịch vụ: lưới icon danh mục ---------- */
.category-tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 4px; }
.category-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: #fff; border: none; border-radius: 18px; padding: 16px 8px; cursor: pointer;
  box-shadow: 0 6px 18px -10px rgba(43, 58, 74, 0.22); transition: transform 0.15s ease, box-shadow 0.15s ease;
  aspect-ratio: 1 / 1; position: relative;
}
.category-tile:active { transform: scale(0.96); box-shadow: 0 2px 8px -4px rgba(43, 58, 74, 0.22); }
.category-tile-icon { width: 40px; height: 40px; flex-shrink: 0; }
.category-tile-icon svg { width: 100%; height: 100%; }
.category-tile-label { font-size: 12px; font-weight: 700; color: var(--navy); text-align: center; line-height: 1.25; }
.category-tile-count {
  position: absolute; top: 8px; right: 8px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: var(--bg-light-1); color: var(--navy-dark);
  font-size: 10.5px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
/* Nhóm "HY Signature" — cao cấp riêng, to gấp 3 ô thường, viền vàng, nằm đầu lưới */
.category-tile-signature {
  grid-column: span 3; aspect-ratio: auto; flex-direction: row; justify-content: flex-start;
  gap: 14px; padding: 16px 20px; min-height: 74px;
  background: linear-gradient(135deg, #2B3A4A 0%, #1E3A5C 100%);
  border: 1.5px solid #C9A24B; position: relative; overflow: hidden;
}
.category-tile-signature::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(201, 162, 75, 0.18) 50%, transparent 65%);
}
.category-tile-signature .category-tile-icon { width: 40px; height: 40px; }
.category-tile-signature .category-tile-label {
  color: #F5E9D2; text-align: left; font-size: 14.5px; letter-spacing: 0.05em; text-transform: uppercase;
}
.category-tile-signature-tag {
  position: absolute; top: 10px; right: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.03em;
  padding: 3px 9px; border-radius: 999px; background: rgba(201, 162, 75, 0.22); color: #F5E9D2;
  border: 1px solid rgba(201, 162, 75, 0.5);
}
.category-back-btn {
  display: flex; align-items: center; gap: 6px; background: none; border: none; padding: 4px 0 14px;
  font-size: 14.5px; font-weight: 700; color: var(--navy); cursor: pointer;
}
.category-back-btn svg { flex-shrink: 0; }

/* ---------- Voucher săn sale đã nhận: thẻ dạng vé ---------- */
.voucher-ticket {
  position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  border-radius: 16px; padding: 18px; color: #fff; margin-bottom: 14px;
  box-shadow: 0 8px 20px -10px rgba(43, 58, 74, 0.4);
}
.voucher-ticket.used { opacity: 0.6; }
.voucher-ticket-title { font-size: 16px; font-weight: 700; margin-top: 6px; }
.voucher-ticket-content { font-size: 13.5px; opacity: 0.92; white-space: pre-wrap; margin: 6px 0 0; }
.voucher-ticket-divider { position: relative; height: 0; border-top: 2px dashed rgba(255, 255, 255, 0.35); margin: 14px -18px; }
.voucher-ticket-divider::before, .voucher-ticket-divider::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%; background: var(--bg-light-3);
}
.voucher-ticket-divider::before { left: -9px; }
.voucher-ticket-divider::after { right: -9px; }
.voucher-ticket-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; gap: 8px; }
.voucher-ticket-status { flex-shrink: 0; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.entry-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 8px; }
.entry-date { font-size: 11.5px; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }
.source-badge {
  font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 999px; text-transform: uppercase;
  letter-spacing: 0.03em; white-space: nowrap;
}
.source-badge.staff { background: var(--bg-light-1); color: var(--navy-dark); }
.source-badge.customer { background: #F5E9D7; color: #7A5A1A; }

.entry-service { font-size: 12.5px; font-weight: 600; color: var(--navy); margin: 0 0 7px; }
.condition-row { display: flex; gap: 7px; margin-bottom: 9px; }
.condition-row .col { flex: 1; background: var(--bg-light-3); border-radius: 8px; padding: 6px 8px; }
.condition-row .col b {
  display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--navy-dark); opacity: 0.6; margin-bottom: 2px; font-weight: 700;
}
.condition-row .col span { font-size: 10.5px; color: var(--navy-dark); line-height: 1.4; display: block; }

.photo-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--navy-dark); opacity: 0.55; margin: 6px 0 4px;
}

.risk-tag {
  display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 600; color: #8A5A12;
  background: #FDF1DC; padding: 3px 8px; border-radius: 7px; margin: 0 4px 6px 0;
}
.risk-tag svg { width: 11px; height: 11px; flex-shrink: 0; }

.entry-note { font-size: 11px; line-height: 1.5; color: var(--navy-dark); opacity: 0.85; margin: 6px 0 0; }
.entry-note b { opacity: 0.85; font-weight: 600; }

/* ---------- Academy: khoá học, module, tiến độ ---------- */
.course-card { cursor: pointer; }
.course-card:active { transform: scale(0.99); }
.course-card .cohort-name { font-size: 12.5px; color: var(--navy-dark); opacity: 0.8; margin-top: 2px; }
.progress-bar-track { height: 7px; border-radius: 999px; background: var(--bg-light-1); margin-top: 10px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--accent); border-radius: 999px; transition: width 0.3s ease; }
.progress-bar-label { font-size: 11.5px; color: var(--navy-dark); opacity: 0.75; margin-top: 5px; }

.back-btn {
  display: flex; align-items: center; gap: 6px; background: none; border: none; padding: 4px 0 14px;
  font-size: 14.5px; font-weight: 700; color: var(--navy); cursor: pointer;
}
.back-btn svg { flex-shrink: 0; }

.module-card { margin-bottom: 10px; }
.module-title { font-size: 14.5px; font-weight: 700; color: var(--navy); }
.module-desc { font-size: 12.5px; color: var(--navy-dark); opacity: 0.85; white-space: pre-line; margin-top: 4px; line-height: 1.5; }
.module-tick-row {
  display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 10px 12px;
  border-radius: 10px; background: var(--bg-light-3); font-size: 13px; font-weight: 600; color: var(--navy);
}
.module-tick-row input[type="checkbox"] { width: 19px; height: 19px; accent-color: var(--accent); flex-shrink: 0; }
.module-status-note { font-size: 11.5px; color: var(--navy-dark); opacity: 0.7; margin-top: 2px; font-weight: normal; }
.module-actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.module-actions button { width: auto; padding: 8px 14px; margin-top: 0; font-size: 12.5px; }

.score-input-row { display: flex; align-items: center; gap: 10px; }
.score-input-row input[type="number"] { width: 80px; text-align: center; font-weight: 700; font-size: 18px; }
.rated-chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700;
  background: var(--bg-light-1); color: var(--navy-dark); padding: 5px 12px; border-radius: 999px; margin-top: 8px;
}

.material-row {
  display: flex; justify-content: space-between; align-items: center; padding: 12px 0;
  border-bottom: 1px solid var(--bg-light-1);
}
.material-row:last-child { border-bottom: none; }
.material-row a { color: var(--accent); font-size: 12.5px; font-weight: 600; text-decoration: none; }
.material-type-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--bg-light-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.material-type-icon svg { width: 17px; height: 17px; color: var(--navy-dark); }
.material-title-row { display: flex; align-items: center; gap: 10px; min-width: 0; }
.material-title-row .name { font-size: 13.5px; font-weight: 600; color: var(--navy); }

.hidden { display: none !important; }
