:root {
  --blue-950: #071f52;
  --blue-900: #0b2d72;
  --blue-800: #123b8c;
  --blue-700: #164ca8;
  --blue-600: #2764c7;
  --blue-100: #e9f0ff;
  --blue-50: #f3f7ff;
  --ink: #172033;
  --muted: #69758c;
  --line: #e6eaf1;
  --surface: #ffffff;
  --page: #f4f7fb;
  --green: #168a5b;
  --green-bg: #e7f7f0;
  --yellow: #ae6f00;
  --yellow-bg: #fff4d8;
  --red: #c63d45;
  --red-bg: #ffebed;
  --gray: #788397;
  --gray-bg: #edf0f4;
  --shadow: 0 16px 38px rgba(13, 35, 77, .08);
  --radius: 18px;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--page); color: var(--ink); }
body { min-height: 100vh; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
.hidden { display: none !important; }
.mobile-only { display: none !important; }

.login-shell { min-height: 100vh; display: grid; grid-template-columns: minmax(460px, 1.05fr) minmax(440px, .95fr); background: #fff; }
.login-brand-panel { position: relative; overflow: hidden; padding: 76px max(7vw, 60px); color: white; background: linear-gradient(145deg, #071f52 0%, #123b8c 62%, #0d5bb4 100%); display: flex; flex-direction: column; justify-content: center; }
.login-brand-panel::before, .login-brand-panel::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); }
.login-brand-panel::before { width: 540px; height: 540px; right: -230px; top: -210px; }
.login-brand-panel::after { width: 340px; height: 340px; right: -50px; bottom: -210px; }
.brand-glow { position: absolute; width: 320px; height: 320px; right: 4vw; top: 12vh; background: rgba(76, 151, 255, .25); filter: blur(90px); border-radius: 50%; }
.login-logo { position: relative; width: min(360px, 72%); padding: 18px 22px; border-radius: 16px; background: white; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.brand-kicker { position: relative; margin: 54px 0 12px; font-size: 12px; letter-spacing: .28em; color: #afcaff; }
.login-brand-panel h1 { position: relative; margin: 0; font-size: clamp(34px, 3.2vw, 54px); line-height: 1.2; letter-spacing: -.04em; }
.login-feature-list { position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.login-feature-list span { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); border-radius: 999px; padding: 9px 14px; font-size: 13px; color: #e6efff; }
.login-form-panel { display: grid; place-items: center; padding: 48px; }
.login-card { width: min(440px, 100%); }
.login-mobile-brand { display: none; }
.eyebrow { color: var(--blue-700); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 8px; }
.login-card h2 { font-size: 27px; margin: 0 0 8px; letter-spacing: -.02em; }
.login-subtitle { margin: 0 0 38px; color: var(--muted); font-size: 16px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field > span, .field-label { font-size: 13px; font-weight: 700; color: #404b61; }
.field input, .field select, .field textarea, .search-input { width: 100%; border: 1px solid #dfe4ec; border-radius: 11px; padding: 12px 13px; color: var(--ink); background: #fff; outline: none; transition: .2s ease; }
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .search-input:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(39,100,199,.1); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }
.form-grid .span-2 { grid-column: 1 / -1; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.button { border: 0; border-radius: 11px; padding: 11px 18px; font-weight: 750; transition: transform .16s ease, background .16s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); box-shadow: 0 8px 18px rgba(18,59,140,.18); }
.button.secondary { color: #344058; background: #f0f3f8; }
.button.danger { color: var(--red); background: var(--red-bg); }
.button.small { padding: 7px 11px; border-radius: 9px; font-size: 12px; }
.login-button { width: 100%; margin-top: 8px; padding: 13px; }
.form-error { min-height: 20px; color: var(--red); font-size: 13px; margin: 10px 0 0; }
.login-hint { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 12px; }
.secure-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-bg); }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: 248px minmax(0, 1fr); }
.sidebar { position: sticky; top: 0; height: 100vh; z-index: 30; padding: 24px 16px 18px; color: #d7e3fb; background: linear-gradient(180deg, #081f4e 0%, #0c2d67 100%); display: flex; flex-direction: column; }
.sidebar-brand { height: 62px; display: flex; align-items: center; padding: 6px 10px; border-radius: 12px; background: white; }
.sidebar-brand img { width: 100%; max-height: 48px; object-fit: contain; }
.sidebar-company { padding: 16px 12px 12px; color: #8fa9d6; font-size: 11px; letter-spacing: .06em; }
.main-nav { display: grid; gap: 5px; margin-top: 8px; }
.main-nav button { display: flex; align-items: center; gap: 12px; width: 100%; border: 0; border-radius: 11px; padding: 11px 13px; color: #b9c9e7; background: transparent; text-align: left; font-size: 14px; }
.main-nav button span { width: 20px; text-align: center; font-size: 17px; }
.main-nav button:hover { color: #fff; background: rgba(255,255,255,.07); }
.main-nav button.active { color: #fff; background: linear-gradient(90deg, rgba(62,129,242,.42), rgba(62,129,242,.12)); box-shadow: inset 3px 0 #6da4ff; }
.sidebar-footer { margin-top: auto; display: grid; gap: 16px; }
.install-button { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 10px 12px; color: #e4ecfb; background: rgba(255,255,255,.06); }
.install-button span { margin-right: 7px; }
.connection-line { display: flex; align-items: center; gap: 8px; padding: 0 6px; color: #91a9d1; font-size: 11px; }
.connection-dot { width: 7px; height: 7px; border-radius: 50%; }
.connection-dot.online { background: #49d69c; box-shadow: 0 0 0 4px rgba(73,214,156,.12); }
.connection-dot.offline { background: #ff757b; box-shadow: 0 0 0 4px rgba(255,117,123,.12); }
.app-main { min-width: 0; }
.topbar { position: sticky; top: 0; z-index: 20; height: 88px; display: flex; align-items: center; gap: 16px; padding: 0 34px; background: rgba(244,247,251,.9); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(222,228,238,.7); }
.topbar h1 { margin: 2px 0 0; font-size: 23px; }
.topbar-eyebrow { margin: 0; color: var(--blue-700); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; color: #47536a; background: #fff; display: inline-grid; place-items: center; font-size: 18px; }
.text-button { border: 0; background: transparent; color: var(--muted); font-size: 13px; }
.user-chip { display: flex; align-items: center; gap: 10px; border: 0; background: transparent; text-align: left; }
.avatar { width: 38px; height: 38px; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--blue-800), #4d82e4); display: grid; place-items: center; font-weight: 800; }
.user-chip-text { display: grid; line-height: 1.25; }
.user-chip-text strong { font-size: 13px; }
.user-chip-text small { color: var(--muted); font-size: 11px; }
.page-root { padding: 26px 34px 50px; max-width: 1600px; margin: 0 auto; }
.page-loading { padding: 80px 0; text-align: center; color: var(--muted); }
.spinner { width: 32px; height: 32px; margin: 0 auto 14px; border: 3px solid #dfe6f2; border-top-color: var(--blue-700); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.section-heading h2 { margin: 0; font-size: 18px; }
.section-heading p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.heading-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 9px; }
.hero-summary { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0,1.4fr) minmax(300px,.6fr); gap: 24px; padding: 26px 28px; border-radius: 22px; color: white; background: linear-gradient(130deg, #0a2c6e, #1751ad 68%, #2770d4); box-shadow: 0 22px 42px rgba(15,54,126,.18); margin-bottom: 20px; }
.hero-summary::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -80px; top: -120px; border: 42px solid rgba(255,255,255,.06); }
.hero-summary > * { position: relative; z-index: 1; }
.hero-summary .eyebrow { color: #a9c8ff; }
.hero-summary h2 { margin: 6px 0 10px; font-size: clamp(24px,3vw,38px); }
.hero-summary p { margin: 0; color: #d8e5fb; line-height: 1.7; }
.hero-meta { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; align-self: end; }
.hero-meta div { border-radius: 13px; padding: 13px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); }
.hero-meta strong { display: block; font-size: 21px; }
.hero-meta span { color: #c4d7f8; font-size: 11px; }
.kpi-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin-bottom: 20px; }
.kpi-card { position: relative; overflow: hidden; min-height: 118px; padding: 18px; border: 1px solid rgba(224,229,238,.8); border-radius: var(--radius); background: var(--surface); box-shadow: 0 8px 22px rgba(21,43,82,.04); }
.kpi-label { color: var(--muted); font-size: 13px; }
.kpi-value { margin: 10px 0 2px; font-size: 32px; font-weight: 850; letter-spacing: -.04em; }
.kpi-note { font-size: 11px; color: #8994a7; }
.kpi-accent { position: absolute; width: 76px; height: 76px; border-radius: 50%; right: -22px; top: -22px; opacity: .16; }
.kpi-accent.blue { background: var(--blue-600); }.kpi-accent.green { background: var(--green); }.kpi-accent.yellow { background: #f4a900; }.kpi-accent.red { background: var(--red); }
.content-grid { display: grid; grid-template-columns: minmax(0,1.65fr) minmax(300px,.85fr); gap: 18px; }
.content-grid.equal { grid-template-columns: repeat(2,minmax(0,1fr)); }
.panel { border: 1px solid rgba(224,229,238,.9); border-radius: var(--radius); background: var(--surface); box-shadow: 0 8px 24px rgba(20,42,80,.045); }
.panel + .panel { margin-top: 18px; }
.panel-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px 14px; }
.panel-header h3 { margin: 0; font-size: 15px; }
.panel-header p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.panel-body { padding: 0 20px 20px; }
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { padding: 11px 12px; color: #7e899d; font-size: 11px; font-weight: 750; text-align: left; white-space: nowrap; border-bottom: 1px solid var(--line); background: #fbfcfe; }
.data-table td { padding: 13px 12px; border-bottom: 1px solid #eef1f5; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: #fbfdff; }
.table-title { font-weight: 720; color: #222d42; }
.table-subtitle { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.status-badge, .tag { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; padding: 5px 9px; white-space: nowrap; font-size: 11px; font-weight: 720; }
.status-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-green { color: var(--green); background: var(--green-bg); }
.status-yellow { color: var(--yellow); background: var(--yellow-bg); }
.status-red { color: var(--red); background: var(--red-bg); }
.status-gray { color: var(--gray); background: var(--gray-bg); }
.tag { color: #42506a; background: #eef2f8; }
.tag.high, .tag.critical { color: var(--red); background: var(--red-bg); }.tag.medium, .tag.important { color: var(--yellow); background: var(--yellow-bg); }.tag.low, .tag.normal { color: var(--green); background: var(--green-bg); }
.progress-line { display: flex; align-items: center; gap: 9px; min-width: 128px; }
.progress-track { flex: 1; height: 7px; border-radius: 999px; overflow: hidden; background: #e8edf5; }
.progress-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue-800),#4e89ee); }
.progress-line strong { width: 36px; font-size: 11px; text-align: right; }
.list-stack { display: grid; gap: 9px; }
.list-item { display: flex; align-items: flex-start; gap: 11px; border: 1px solid #edf0f4; border-radius: 12px; padding: 12px; background: #fff; }
.list-marker { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 5px; border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 4px var(--blue-100); }
.list-item-content { min-width: 0; flex: 1; }
.list-item-content strong { display: block; font-size: 13px; }
.list-item-content p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.list-item-actions { flex: 0 0 auto; display: flex; gap: 5px; }
.empty-state { padding: 34px 20px; text-align: center; color: var(--muted); }
.empty-state strong { display: block; color: #455168; margin-bottom: 5px; }
.empty-state p { margin: 0; font-size: 12px; }
.action-link { border: 0; color: var(--blue-700); background: transparent; padding: 3px; font-size: 12px; font-weight: 720; }
.danger-link { color: var(--red); }

.filter-bar { display: flex; gap: 10px; margin-bottom: 18px; }
.search-input { max-width: 360px; }
.project-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.project-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; background: #fff; box-shadow: 0 8px 22px rgba(20,42,80,.04); transition: .18s ease; }
.project-card:hover { transform: translateY(-2px); border-color: #ccd8ec; box-shadow: var(--shadow); }
.project-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.project-card h3 { margin: 12px 0 4px; font-size: 16px; line-height: 1.45; }
.project-code { color: var(--muted); font-size: 11px; }
.project-card .progress-line { margin: 20px 0 13px; }
.project-card-meta { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 14px; }
.project-card-meta div { padding: 9px; border-radius: 10px; background: #f7f9fc; }
.project-card-meta span { display: block; color: var(--muted); font-size: 10px; }
.project-card-meta strong { display: block; margin-top: 3px; font-size: 12px; }
.project-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line); }
.detail-hero { padding: 22px; margin-bottom: 18px; border-radius: 20px; background: linear-gradient(135deg,#fff,#f4f8ff); border: 1px solid #dfe7f4; }
.detail-hero-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.back-button { border: 0; color: var(--blue-700); background: transparent; padding: 0; font-weight: 720; font-size: 12px; }
.detail-hero h2 { margin: 12px 0 5px; font-size: 25px; }
.detail-hero p { color: var(--muted); margin: 0; line-height: 1.6; }
.detail-stats { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; margin-top: 20px; }
.detail-stat { border-radius: 12px; padding: 12px; background: #fff; border: 1px solid #e9edf4; }
.detail-stat span { display: block; color: var(--muted); font-size: 10px; }
.detail-stat strong { display: block; margin-top: 4px; font-size: 13px; }
.info-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.info-box { padding: 13px; border-radius: 12px; background: #f8fafc; }
.info-box span { display: block; color: var(--muted); font-size: 10px; margin-bottom: 5px; }
.info-box p { margin: 0; font-size: 13px; line-height: 1.55; white-space: pre-wrap; }
.member-row { display: flex; flex-wrap: wrap; gap: 8px; }
.member-pill { display: inline-flex; align-items: center; gap: 7px; border-radius: 999px; padding: 5px 10px 5px 5px; background: #f0f4fa; font-size: 11px; }
.member-pill .avatar { width: 25px; height: 25px; border-radius: 50%; font-size: 10px; }

.assistant-shell { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 18px; }
.assistant-main { min-height: 560px; display: flex; flex-direction: column; }
.chat-list { flex: 1; display: grid; align-content: start; gap: 12px; padding: 20px; }
.chat-message { max-width: 86%; border-radius: 15px; padding: 13px 15px; line-height: 1.65; font-size: 13px; }
.chat-message.user { margin-left: auto; color: #fff; background: var(--blue-800); border-bottom-right-radius: 4px; }
.chat-message.assistant { background: #f1f5fb; border-bottom-left-radius: 4px; }
.chat-message h4 { margin: 0 0 6px; }
.chat-message ul { margin: 0; padding-left: 19px; }
.assistant-input { display: flex; gap: 10px; padding: 16px; border-top: 1px solid var(--line); }
.assistant-input input { flex: 1; border: 1px solid var(--line); border-radius: 11px; padding: 12px 13px; outline: none; }
.question-chips { display: grid; gap: 8px; }
.question-chips button { border: 1px solid var(--line); border-radius: 11px; padding: 11px 12px; color: #41506a; background: #fff; text-align: left; font-size: 12px; }
.question-chips button:hover { border-color: var(--blue-600); color: var(--blue-700); }
.report-sheet { max-height: 58vh; overflow: auto; padding: 16px; border-radius: 12px; background: #f7f9fc; }
.report-project { padding: 14px; margin-bottom: 10px; border-radius: 12px; background: #fff; border: 1px solid var(--line); }
.report-project h4 { margin: 0 0 7px; }.report-project p { margin: 4px 0; font-size: 12px; line-height: 1.55; }

.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6,20,49,.54); backdrop-filter: blur(4px); }
.modal-card { position: relative; width: min(720px,100%); max-height: calc(100vh - 40px); display: flex; flex-direction: column; border-radius: 20px; background: #fff; box-shadow: 0 28px 80px rgba(3,18,50,.28); overflow: hidden; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px 14px; border-bottom: 1px solid var(--line); }
.modal-header h2 { margin: 0; font-size: 20px; }
#modal-form { min-height: 0; display: flex; flex-direction: column; }
.modal-body { overflow-y: auto; padding: 20px 22px 8px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 22px 18px; border-top: 1px solid var(--line); }
.modal .form-error { padding: 0 22px; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 150; max-width: 360px; padding: 12px 16px; border-radius: 11px; color: #fff; background: #1b2942; box-shadow: var(--shadow); opacity: 0; transform: translateY(16px); pointer-events: none; transition: .2s ease; font-size: 13px; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #a92f39; }
.sidebar-backdrop { display: none; }

@media (max-width: 1180px) {
  .project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .kpi-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .detail-stats { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .mobile-only { display: inline-grid !important; }
  .login-shell { grid-template-columns: 1fr; }
  .login-brand-panel { display: none; }
  .login-form-panel { min-height: 100vh; padding: 30px 22px; background: linear-gradient(180deg,#edf4ff,#fff 42%); }
  .login-mobile-brand { display: block; margin: 0 auto 32px; width: 220px; padding: 14px; border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .login-mobile-brand img { width: 100%; display: block; }
  .login-card h2 { font-size: 22px; }
  .app-shell { display: block; }
  .sidebar { position: fixed; left: 0; transform: translateX(-105%); width: 260px; transition: transform .22s ease; box-shadow: 16px 0 45px rgba(3,18,50,.25); }
  .sidebar.open { transform: translateX(0); }
  .sidebar-brand { justify-content: space-between; }
  .sidebar-brand img { width: 178px; }
  .sidebar-brand .icon-button { border: 0; width: 34px; height: 34px; background: #eef3fb; }
  .sidebar-backdrop { position: fixed; inset: 0; z-index: 25; background: rgba(3,16,42,.42); }
  .sidebar-backdrop.show { display: block; }
  .topbar { height: 74px; padding: 0 16px; }
  .topbar h1 { font-size: 18px; }
  .topbar-eyebrow { display: none; }
  .user-chip-text, .text-button, #refresh-button { display: none; }
  .page-root { padding: 18px 14px 40px; }
  .hero-summary { grid-template-columns: 1fr; padding: 22px; }
  .content-grid, .content-grid.equal, .assistant-shell { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .detail-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .assistant-main { min-height: 460px; }
}

@media (max-width: 560px) {
  .kpi-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
  .kpi-card { min-height: 104px; padding: 14px; }
  .kpi-value { font-size: 26px; }
  .hero-meta { grid-template-columns: repeat(2,1fr); }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .heading-actions { width: 100%; justify-content: flex-start; }
  .heading-actions .button { flex: 1; }
  .filter-bar { flex-direction: column; }
  .search-input { max-width: none; }
  .form-grid, .checkbox-grid, .info-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: auto; }
  .detail-hero-top { flex-direction: column; }
  .detail-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .modal { padding: 0; align-items: end; }
  .modal-card { width: 100%; max-height: 92vh; border-radius: 20px 20px 0 0; }
  .chat-message { max-width: 94%; }
}
