:root {
  --aus-navy: #002B5B;
  --aus-gold: #FFD700;
  --aus-blue: #2563eb;
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.4);
}
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f3f4f6;
  margin: 0;
  overflow: hidden;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.status-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  flex-shrink: 0;
}
.status-online { background-color: #22c55e; box-shadow: 0 0 6px #22c55e; }
.status-offline { background-color: #ef4444; box-shadow: 0 0 6px #ef4444; }
.status-idle { background-color: #9ca3af; }
.status-connecting { background-color: #f59e0b; animation: pulse 1s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--aus-navy); border-radius: 3px; opacity: 0.5; }
.loader {
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--aus-navy);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: spin 1s linear infinite;
  display: inline-block;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 0.25s ease-out; }
.desktop-layout {
  display: grid;
  grid-template-columns: 260px minmax(500px, 1fr) 756px;
  gap: 0.5rem;
  padding: 0.5rem;
  height: 100vh;
  box-sizing: border-box;
  padding-top: 2.75rem;
}
.drop-zone {
  border: 2px dashed #bfdbfe;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.drop-zone:hover { background-color: #eff6ff; border-color: var(--aus-navy); }
.drop-zone.drag-over { background-color: #dbeafe; border-color: var(--aus-navy); }
.message-user {
  background-color: var(--aus-navy);
  color: white;
  border-radius: 1rem;
  padding: 0.5rem 0.8rem;
  max-width: 75%;
  margin-left: auto;
  font-size: 13px;
  word-break: break-word;
}
.message-ai {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 0.6rem 0.9rem;
  max-width: 82%;
  font-size: 13px;
}
.project-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.5rem;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 12px;
  position: relative;
}
.project-item:hover { background: #f3f4f6; }
.project-item.active { background: var(--aus-navy); color: white; }
.project-item .pin-icon { display: none; font-size: 9px; margin-right: 1px; }
.project-item.pinned .pin-icon { display: inline; }
.project-item .delete-icon {
  display: none;
  position: absolute;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  align-items: center;
  justify-content: center;
}
.project-item:hover .delete-icon { display: flex; }
.sort-select {
  font-size: 10px;
  padding: 0.2rem 0.4rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.3rem;
  background: white;
  color: #6b7280;
}
.file-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.45rem;
  background: #eff6ff;
  border-radius: 0.35rem;
  font-size: 11px;
}
.file-item .file-icon {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: white;
}
.file-icon.pdf { background: #ef4444; }
.file-icon.img { background: #8b5cf6; }
.file-icon.msg { background: #0ea5e9; }
.file-icon.txt { background: #22c55e; }
.processing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  border-radius: 0.75rem;
  z-index: 10;
}
.processing-overlay.active { display: flex; }
.settings-panel {
  display: none;
  padding: 0.6rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
.settings-panel.open { display: block; }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: white;
  padding: 1.25rem;
  border-radius: 0.75rem;
  min-width: 320px;
  max-width: 90%;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.modal-input {
  width: 100%;
  padding: 0.45rem;
  border: 1px solid #d1d5db;
  border-radius: 0.35rem;
  margin: 0.6rem 0;
  font-size: 13px;
  box-sizing: border-box;
}
.context-menu {
  position: fixed;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  z-index: 100;
  min-width: 130px;
  display: none;
}
.context-menu.active { display: block; }
.context-menu-item {
  padding: 0.45rem 0.65rem;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.context-menu-item:hover { background: #f3f4f6; }
.context-menu-divider { height: 1px; background: #e5e7eb; margin: 0.2rem 0; }
.center-welcome {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}
.center-welcome h2 { font-size: 1.5rem; font-weight: 300; color: var(--aus-navy); margin-bottom: 0.5rem; }
.center-welcome .features { font-size: 11px; color: #6b7280; max-width: 300px; line-height: 1.6; }
.center-welcome .feature-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin-top: 0.75rem; }
.center-welcome .tag { padding: 0.2rem 0.5rem; background: #e5e7eb; border-radius: 1rem; font-size: 10px; color: #4b5563; }
.backup-section { padding: 0.5rem; background: #f3f4f6; border-radius: 0.35rem; margin-top: 0.5rem; }
.backup-row { display: flex; align-items: center; justify-content: space-between; font-size: 10px; margin-bottom: 0.4rem; }
.backup-row label { color: #6b7280; }
.backup-row input[type="range"] { width: 80px; height: 4px; -webkit-appearance: none; background: #d1d5db; border-radius: 2px; outline: none; }
.backup-row input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; background: var(--aus-navy); border-radius: 50%; cursor: pointer; }
.backup-toggle {
  position: relative;
  width: 32px;
  height: 16px;
  background: #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.backup-toggle.active { background: var(--aus-navy); }
.backup-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}
.backup-toggle.active::after { transform: translateX(16px); }
.model-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: #f3f4f6;
  border-radius: 0.5rem;
  font-size: 11px;
  margin-bottom: 0.5rem;
}
.model-bar select {
  font-size: 11px;
  padding: 0.2rem 0.4rem;
  border: 1px solid #d1d5db;
  border-radius: 0.3rem;
  background: white;
  color: #374151;
  cursor: pointer;
}
.model-bar select:focus { outline: none; border-color: var(--aus-navy); }
.model-config-btn {
  padding: 0.25rem 0.4rem;
  border: 1px solid #d1d5db;
  border-radius: 0.3rem;
  background: white;
  font-size: 10px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.model-config-btn:hover { border-color: var(--aus-navy); color: var(--aus-navy); }
.api-config-panel {
  display: none;
  padding: 0.6rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}
.api-config-panel.open { display: block; }
.api-config-panel .settings-group { margin-bottom: 0.4rem; }
.api-config-panel .settings-label { font-size: 9px; margin-bottom: 0.15rem; display: block; }
.api-config-panel input { font-size: 10px; padding: 0.3rem; width: 100%; box-sizing: border-box; }
.model-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 9px;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  background: white;
  border: 1px solid #e5e7eb;
}
.model-status-indicator.online { color: #22c55e; border-color: #22c55e; }
.model-status-indicator.offline { color: #ef4444; border-color: #ef4444; }
.model-status-indicator .status-dot { margin-right: 0; }
.markdown-content { line-height: 1.6; }
.markdown-content h1 { font-size: 1.25rem; font-weight: 700; margin: 0.5rem 0; color: var(--aus-navy); }
.markdown-content h2 { font-size: 1.1rem; font-weight: 600; margin: 0.4rem 0; color: var(--aus-navy); }
.markdown-content h3 { font-size: 1rem; font-weight: 600; margin: 0.3rem 0; }
.markdown-content p { margin: 0.4rem 0; }
.markdown-content ul, .markdown-content ol { margin: 0.4rem 0; padding-left: 1.2rem; }
.markdown-content li { margin: 0.2rem 0; }
.markdown-content code { background: #f3f4f6; padding: 0.1rem 0.3rem; border-radius: 0.2rem; font-size: 0.85em; }
.markdown-content pre { background: #1f2937; color: #e5e7eb; padding: 0.6rem; border-radius: 0.4rem; overflow-x: auto; margin: 0.5rem 0; }
.markdown-content pre code { background: transparent; padding: 0; color: inherit; }
.markdown-content blockquote { border-left: 3px solid var(--aus-gold); padding-left: 0.6rem; margin: 0.4rem 0; color: #6b7280; }
.markdown-content a { color: var(--aus-navy); text-decoration: underline; }
.markdown-content table { border-collapse: collapse; width: 100%; margin: 0.5rem 0; }
.markdown-content th, .markdown-content td { border: 1px solid #e5e7eb; padding: 0.3rem 0.5rem; text-align: left; }
.markdown-content th { background: #f3f4f6; font-weight: 600; }
.overview-section { padding: 0.5rem; background: white; border-radius: 0.4rem; margin-bottom: 0.5rem; border: 1px solid #e5e7eb; }
.overview-section h3 { font-size: 11px; font-weight: 600; color: var(--aus-navy); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.3rem; }
.overview-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; font-size: 10px; }
.overview-info-item { display: flex; flex-direction: column; }
.overview-info-label { color: #9ca3af; font-size: 9px; }
.overview-info-value { color: #374151; font-weight: 500; }
.progress-bar { height: 6px; background: #e5e7eb; border-radius: 3px; overflow: hidden; margin-top: 0.3rem; }
.progress-bar-fill { height: 100%; background: var(--aus-navy); transition: width 0.3s; }
.equipment-item { display: flex; justify-content: space-between; align-items: center; padding: 0.3rem; background: #f9fafb; border-radius: 0.3rem; margin-bottom: 0.2rem; font-size: 10px; }
.equipment-item .eq-name { font-weight: 500; color: #374151; }
.equipment-item .eq-qty { background: var(--aus-navy); color: white; padding: 0.1rem 0.4rem; border-radius: 0.8rem; font-size: 9px; }
.task-item { display: flex; align-items: flex-start; gap: 0.4rem; padding: 0.4rem; background: #fef3c7; border-radius: 0.3rem; margin-bottom: 0.3rem; font-size: 10px; border-left: 3px solid #f59e0b; }
.task-item.completed { background: #d1fae5; border-left-color: #22c55e; }
.task-item .task-priority { font-size: 8px; padding: 0.1rem 0.3rem; border-radius: 0.2rem; font-weight: 600; }
.task-priority.high { background: #ef4444; color: white; }
.task-priority.medium { background: #f59e0b; color: white; }
.task-priority.low { background: #22c55e; color: white; }
.control-spec { display: flex; justify-content: space-between; padding: 0.25rem 0; border-bottom: 1px dashed #e5e7eb; font-size: 10px; }
.control-spec:last-child { border-bottom: none; }
.control-spec .spec-value { font-weight: 600; color: var(--aus-navy); }
.status-badge { display: inline-block; padding: 0.15rem 0.4rem; border-radius: 0.8rem; font-size: 8px; font-weight: 600; }
.status-badge.planning { background: #dbeafe; color: #1d4ed8; }
.status-badge.design { background: #fef3c7; color: #b45309; }
.status-badge.installation { background: #e0e7ff; color: #4338ca; }
.status-badge.testing { background: #fce7f3; color: #be185d; }
.status-badge.completed { background: #d1fae5; color: #047857; }
.overview-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0.4rem;
}
.overview-toggle:hover { background: #f9fafb; margin: 0 -0.5rem 0.4rem -0.5rem; padding: 0.3rem 0.5rem; }
.overview-toggle .arrow { transition: transform 0.2s; }
.overview-toggle .arrow.open { transform: rotate(180deg); }
.overview-toggle h3 { margin: 0; font-size: 11px; display: flex; align-items: center; gap: 0.3rem; }
.overview-content { display: block; }
.overview-content.collapsed { display: none; }
.zone-section { margin-top: 0.3rem; padding: 0.3rem; background: #f0f9ff; border-radius: 0.3rem; border-left: 3px solid var(--aus-navy); }
.zone-header { font-size: 10px; font-weight: 600; color: var(--aus-navy); margin-bottom: 0.2rem; }
.relation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem;
  background: #fef3c7;
  border-radius: 0.3rem;
  margin-bottom: 0.2rem;
  font-size: 10px;
}
.relation-hvac { color: #1d4ed8; font-weight: 500; flex: 1; }
.relation-type { 
  padding: 0.1rem 0.4rem;
  border-radius: 0.2rem;
  font-size: 8px;
  margin: 0 0.5rem;
}
.relation-type.controls { background: #dbeafe; color: #1d4ed8; }
.relation-type.monitors { background: #d1fae5; color: #047857; }
.relation-type.partOf { background: #fce7f3; color: #be185d; }
.relation-bms { color: #047857; font-weight: 500; flex: 1; text-align: right; }
.db-status {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 0.3rem 0.6rem;
  background: #f3f4f6;
  border-radius: 0.5rem;
  font-size: 9px;
  color: #6b7280;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.db-status.success { background: #d1fae5; color: #047857; }
.db-status.error { background: #fee2e2; color: #dc2626; }

/* ── Suggestions Modal ── */
.sug-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:9999; display:flex; align-items:center; justify-content:center; animation:fadeIn 0.2s; }
.sug-body { background:#fff; border-radius:12px; max-width:560px; width:90%; max-height:80vh; display:flex; flex-direction:column; box-shadow:0 8px 32px rgba(0,0,0,0.2); }
.sug-body h3 { margin:0 0 12px; font-size:1.1rem; color:var(--aus-navy); padding:24px 24px 0; }
.sug-reason { background:#f0f7ff; border-left:3px solid var(--aus-blue); padding:10px 14px; margin-bottom:14px; border-radius:6px; font-size:0.9rem; white-space:pre-wrap; }
.sug-list { display:flex; flex-direction:column; gap:8px; overflow-y:auto; flex:1; padding:0 24px; }
.sug-card { padding:10px 14px; background:#f9fafb; border-radius:8px; border:1px solid #e5e7eb; font-size:0.9rem; }
.sug-card b { color:var(--aus-navy); }
.c-new { color:#16a34a; }
.c-edit { color:#d97706; }
.c-del { color:#dc2626; }
.sug-btns { display:flex; gap:10px; justify-content:flex-end; padding:16px 24px; border-top:1px solid #e5e7eb; flex-shrink:0; }
.sug-btns button { padding:8px 20px; border-radius:8px; border:1px solid #d1d5db; background:#fff; cursor:pointer; font-size:0.9rem; }
.sug-btns .btn-accept { background:var(--aus-blue); color:#fff; border-color:var(--aus-blue); }
.sug-btns .btn-accept:disabled { opacity:0.4; cursor:not-allowed; }

/* ── Suggestion card row ── */
.sug-card { padding:8px 12px; background:#f9fafb; border-radius:8px; border:1px solid #e5e7eb; font-size:0.85rem; }
.sug-card b { color:var(--aus-navy); }
.sug-card-row { display:flex; align-items:center; gap:8px; }
.sug-check { display:flex; align-items:center; cursor:pointer; flex-shrink:0; }
.sug-check input[type="checkbox"] { width:16px; height:16px; cursor:pointer; accent-color:var(--aus-blue); }
.sug-badge { flex-shrink:0; }
.sug-name { flex:1; min-width:0; }
.sug-match { color:#6b7280; font-size:0.8rem; flex-shrink:0; }
.sug-attrs { padding:0 0 0 28px; color:#6b7280; font-size:0.8rem; margin-top:2px; }
.sug-edit-btn { flex-shrink:0; width:24px; height:24px; padding:0; border:1px solid #d1d5db; border-radius:4px; background:#fff; cursor:pointer; font-size:12px; line-height:1; display:flex; align-items:center; justify-content:center; }
.sug-edit-btn:hover { background:#f3f4f6; border-color:var(--aus-blue); }

/* ── Inline edit form ── */
.sug-edit-form { margin-top:8px; padding:10px; background:#fff; border:1px dashed var(--aus-blue); border-radius:6px; display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
.sug-edit-form input[type="text"] { width:120px; padding:4px 6px; border:1px solid #d1d5db; border-radius:4px; font-size:0.8rem; }
.sug-edit-form select { padding:4px 6px; border:1px solid #d1d5db; border-radius:4px; font-size:0.8rem; }
.sug-edit-form textarea { width:100%; padding:4px 6px; border:1px solid #d1d5db; border-radius:4px; font-size:0.75rem; font-family:monospace; resize:vertical; }
.sug-edit-btns { display:flex; gap:4px; margin-left:auto; }
.sug-edit-btns button { padding:4px 10px; border-radius:4px; border:1px solid #d1d5db; cursor:pointer; font-size:0.8rem; background:#fff; }
.sug-edit-btns button:first-child { background:var(--aus-blue); color:#fff; border-color:var(--aus-blue); }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── Log Modal ── */
.log-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:10000; display:flex; align-items:center; justify-content:center; }
.log-body { background:#fff; border-radius:12px; max-width:700px; width:90%; max-height:85vh; display:flex; flex-direction:column; padding:20px; box-shadow:0 8px 32px rgba(0,0,0,0.2); }
.log-body h3 { margin:0 0 12px; font-size:1.1rem; color:var(--aus-navy); }
.log-filter { display:flex; gap:8px; margin-bottom:12px; }
.log-filter button { padding:4px 12px; border-radius:6px; border:1px solid #d1d5db; background:#fff; cursor:pointer; font-size:0.8rem; }
.log-filter button.active { background:var(--aus-navy); color:#fff; border-color:var(--aus-navy); }
.log-entries { flex:1; overflow-y:auto; font-family:monospace; font-size:0.8rem; }
.log-entry { padding:6px 8px; border-bottom:1px solid #f3f4f6; display:flex; gap:8px; align-items:flex-start; }
.log-entry.error { background:#fef2f2; }
.log-entry.warn { background:#fffbeb; }
.log-time { color:#9ca3af; white-space:nowrap; min-width:70px; }
.log-level { font-weight:700; min-width:40px; text-transform:uppercase; }
.log-level.error { color:#dc2626; } .log-level.warn { color:#d97706; } .log-level.info { color:#2563eb; }
.log-msg { flex:1; word-break:break-word; }

/* ── Composite Multimodal Input ── */
.composite-input {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  padding: 0.5rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 40px;
}
.composite-input:focus-within {
  border-color: var(--aus-navy);
  box-shadow: 0 0 0 2px rgba(0,43,91,0.15);
}
.composite-input.drag-over {
  border-color: var(--aus-navy);
  background: #eff6ff;
}
.composite-textarea {
  flex: 1;
  border: none;
  outline: none;
  resize: none;
  font-size: 13px;
  font-family: inherit;
  padding: 0.2rem 0;
  max-height: 120px;
  line-height: 1.5;
  background: transparent;
}
.attach-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f3f4f6;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #6b7280;
  flex-shrink: 0;
  transition: all 0.15s;
}
.attach-btn:hover { background: #e5e7eb; color: var(--aus-navy); }
.send-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--aus-navy);
  border-radius: 0.5rem;
  cursor: pointer;
  color: white;
  flex-shrink: 0;
  transition: all 0.15s;
}
.send-btn:hover { background: #001f3f; }
/* ── Chat message delete button ── */
.chat-msg-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}
.chat-msg-wrapper:hover .chat-delete-btn { opacity: 1; }
.chat-delete-btn {
  opacity: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid #fca5a5;
  border-radius: 50%;
  background: transparent;
  color: #fca5a5;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  margin-top: 2px;
}
.chat-delete-btn:hover {
  background: #fef2f2;
  border-color: #ef4444;
  color: #ef4444;
}
.file-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.4rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.35rem;
  font-size: 10px;
  color: #1d4ed8;
}
.file-badge .remove-badge {
  cursor: pointer;
  color: #ef4444;
  font-size: 12px;
  line-height: 1;
  margin-left: 0.15rem;
}