:root {
  --blue: #1a4d8f;
  --blue-light: #2a6db5;
  --blue-bg: #eaf1fb;
  --red: #d32f2f;
  --red-bg: #fdebeb;
  --orange: #f57c00;
  --orange-bg: #fff4e6;
  --green: #388e3c;
  --green-bg: #e8f5e9;
  --purple: #7b1fa2;
  --purple-bg: #f3e5f5;
  --teal: #0097a7;
  --teal-bg: #e0f7fa;
  --gray: #6b7280;
  --gray-bg: #f3f4f6;
  --border: #e0e0e0;
  --text: #1a1a1a;
  --bg: #f8f9fa;
  --sidebar-w: 240px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ===== LAYOUT ===== */
.app-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: var(--sidebar-w);
  background: linear-gradient(180deg, #0d3158 0%, var(--blue) 100%);
  color: white;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 200;
  transition: transform 0.25s;
}
.sidebar-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-header h2 { font-size: 16px; font-weight: 700; }
.sidebar-header p { font-size: 12px; opacity: 0.7; }
.nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.8);
  text-decoration: none; cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none; background: none; width: 100%; text-align: left; font-size: 14px;
}
.nav-item:hover { background: rgba(255,255,255,0.1); color: white; }
.nav-item.active { background: rgba(255,255,255,0.15); color: white; font-weight: 600; }
.nav-item .icon { font-size: 18px; width: 24px; text-align: center; }
.nav-section { padding: 10px 20px 4px; font-size: 11px; text-transform: uppercase; opacity: 0.5; letter-spacing: 1px; }

.main { flex: 1; margin-left: var(--sidebar-w); min-width: 0; }
.topbar {
  background: white; padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
  position: sticky; top: 0; z-index: 100;
}
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; padding: 4px; }
.topbar h1 { font-size: 18px; flex: 1; }
.topbar .user-info { font-size: 13px; color: var(--gray); }
.content { padding: 24px; max-width: 1400px; }

/* ===== CARDS / TABLES ===== */
.card {
  background: white; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden; margin-bottom: 20px;
}
.card-header {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.card-header h3 { font-size: 16px; }
.card-body { padding: 20px; }

table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead { background: var(--gray-bg); }
th { padding: 10px; text-align: left; font-weight: 600; font-size: 13px; }
td { padding: 10px; border-bottom: 1px solid var(--border); vertical-align: top; }
tbody tr { transition: background 0.15s; }
tbody tr:hover { background: var(--blue-bg); }

/* ===== BADGES ===== */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 12px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.badge-red { background: var(--red-bg); color: var(--red); }
.badge-orange { background: var(--orange-bg); color: var(--orange); }
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-blue { background: var(--blue-bg); color: var(--blue); }
.badge-gray { background: var(--gray-bg); color: var(--gray); }
.badge-purple { background: var(--purple-bg); color: var(--purple); }

.risk-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.risk-dot.high { background: var(--red); }
.risk-dot.medium { background: var(--orange); }
.risk-dot.low { background: var(--green); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 8px 12px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 14px; font-family: inherit;
}
.form-group textarea { min-height: 80px; resize: vertical; }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }

.btn {
  padding: 8px 18px; border: none; border-radius: 6px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: opacity 0.15s; display: inline-flex; align-items: center; gap: 6px;
}
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--blue); color: white; }
.btn-green { background: var(--green); color: white; }
.btn-red { background: var(--red); color: white; }
.btn-gray { background: var(--gray); color: white; }
.btn-orange { background: var(--orange); color: white; }
.btn-sm { padding: 4px 12px; font-size: 12px; }

.array-editor { border: 1px solid var(--border); border-radius: 6px; padding: 8px; background: white; }
.array-editor .array-item { display: flex; gap: 8px; align-items: center; margin-bottom: 4px; }
.array-editor .array-item input { flex: 1; padding: 6px 10px; border: 1px solid var(--border); border-radius: 4px; }
.array-editor .add-btn { font-size: 13px; color: var(--blue); cursor: pointer; border: none; background: none; }
.array-remove { background: none; border: none; color: var(--red); cursor: pointer; font-size: 18px; }

/* ===== LOGIN ===== */
.login-wrap {
  display: flex; align-items: center; justify-content: center; min-height: 100vh;
  background: linear-gradient(135deg, var(--blue) 0%, #0d3158 100%);
}
.login-card {
  background: white; padding: 40px; border-radius: 16px; width: 100%; max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.login-card h1 { font-size: 24px; margin-bottom: 8px; text-align: center; }
.login-card p { text-align: center; color: var(--gray); margin-bottom: 24px; font-size: 14px; }
.login-card .error { background: var(--red-bg); color: var(--red); padding: 10px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; }

/* ===== STATS ===== */
.stats-row { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.stat-card {
  background: white; border-radius: 10px; padding: 20px; flex: 1; min-width: 140px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: center;
}
.stat-card .stat-num { font-size: 32px; font-weight: 700; color: var(--blue); }
.stat-card .stat-label { font-size: 13px; color: var(--gray); }
.stat-card.danger .stat-num { color: var(--red); }

/* ===== EMPTY ===== */
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray); }
.empty-state .icon { font-size: 48px; margin-bottom: 12px; }

/* ===== DEAL CARDS ===== */
.deal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.deal-card {
  background: white; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
  border-top: 4px solid var(--blue);
}
.deal-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.deal-card.status-design { border-top-color: var(--gray); }
.deal-card.status-active { border-top-color: var(--green); }
.deal-card.status-completed { border-top-color: var(--blue); }
.deal-card.status-cancelled { border-top-color: var(--red); }
.deal-card .deal-body { padding: 16px; }
.deal-card h4 { font-size: 16px; margin-bottom: 6px; }
.deal-card .deal-meta { font-size: 13px; color: var(--gray); margin-bottom: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.deal-card .deal-meta span { white-space: nowrap; }
.deal-card .deal-value { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.deal-card .progress-bar { height: 6px; background: var(--gray-bg); border-radius: 3px; overflow: hidden; margin: 8px 0; }
.deal-card .progress-fill { height: 100%; background: var(--green); border-radius: 3px; transition: width 0.3s; }

/* ===== DEAL VIEW HEADER ===== */
.deal-view-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.deal-view-title { display: flex; align-items: flex-start; gap: 4px; }
.deal-view-title h2 { font-size: 22px; }
.deal-view-meta {
  font-size: 13px; color: var(--gray); margin-top: 6px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.deal-view-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ===== TABS ===== */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 20px; overflow-x: auto; }
.tab {
  padding: 10px 20px; border: none; background: none; cursor: pointer; font-size: 14px;
  color: var(--gray); border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap;
  font-weight: 500; transition: color 0.15s, border-color 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.tab:hover { color: var(--blue); }
.tab.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600; }
.tab-badge {
  background: var(--gray-bg); color: var(--gray); padding: 1px 8px; border-radius: 10px;
  font-size: 11px; font-weight: 600;
}
.tab.active .tab-badge { background: var(--blue-bg); color: var(--blue); }

/* ===== STRATEGY SUMMARY ===== */
.strategy-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.strategy-card {
  background: white; border-radius: 10px; padding: 16px 12px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-bottom: 4px solid var(--border);
  transition: transform 0.15s;
}
.strategy-card:hover { transform: translateY(-2px); }
.strategy-avoid { border-bottom-color: var(--green); }
.strategy-mitigate { border-bottom-color: var(--orange); }
.strategy-accept { border-bottom-color: var(--red); }
.strategy-transfer { border-bottom-color: var(--blue); }
.strategy-card-icon { font-size: 24px; }
.strategy-card-num { font-size: 28px; font-weight: 700; margin: 4px 0; }
.strategy-avoid .strategy-card-num { color: var(--green); }
.strategy-mitigate .strategy-card-num { color: var(--orange); }
.strategy-accept .strategy-card-num { color: var(--red); }
.strategy-transfer .strategy-card-num { color: var(--blue); }
.strategy-card-label { font-size: 13px; color: var(--gray); font-weight: 600; }

/* ===== STRATEGY LEGEND ===== */
.strategy-legend { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.legend-item { display: flex; gap: 10px; align-items: flex-start; }
.legend-icon {
  width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.legend-item strong { font-size: 13px; }
.legend-item p { font-size: 12px; color: var(--gray); }

/* ===== RISK MAP ===== */
.risk-map { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.risk-map-column {
  background: white; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); overflow: hidden;
}
.risk-map-header {
  padding: 8px 12px; font-size: 13px; font-weight: 700;
  background: var(--blue-bg); color: var(--blue);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.risk-map-count {
  background: var(--blue); color: white; padding: 1px 8px; border-radius: 10px; font-size: 11px;
}
.risk-map-body { padding: 8px; min-height: 60px; }
.risk-map-empty { text-align: center; color: var(--gray); font-size: 12px; padding: 16px 8px; }
.risk-map-card {
  background: var(--bg); border-radius: 6px; padding: 8px 10px; margin-bottom: 6px; font-size: 12px;
  border-left: 3px solid var(--gray); position: relative;
}
.risk-map-card.level-high { border-left-color: var(--red); background: var(--red-bg); }
.risk-map-card.level-medium { border-left-color: var(--orange); background: var(--orange-bg); }
.risk-map-card.level-low { border-left-color: var(--green); background: var(--green-bg); }
.risk-map-card .rmc-title { font-weight: 600; padding-right: 16px; line-height: 1.3; }
.risk-map-card .rmc-id { font-size: 11px; color: var(--gray); }
.risk-map-card .rmc-level { font-size: 11px; margin-top: 2px; }
.risk-map-card .rmc-remove {
  position: absolute; top: 4px; right: 4px;
  background: none; border: none; color: var(--red); cursor: pointer; font-size: 16px;
  padding: 0; line-height: 1; opacity: 0.6; transition: opacity 0.15s;
}
.risk-map-card .rmc-remove:hover { opacity: 1; }
.risk-map-card .rmc-strategy { margin-top: 6px; display: flex; gap: 4px; flex-wrap: wrap; }
.risk-map-card .rmc-notes { font-size: 11px; color: var(--gray); margin-top: 4px; font-style: italic; }

.strategy-btn {
  padding: 3px 8px; border-radius: 4px; border: 1px solid var(--border);
  background: white; font-size: 10px; cursor: pointer; white-space: nowrap;
  transition: opacity 0.15s;
}
.strategy-btn:hover { opacity: 0.8; }
.strategy-btn.active.avoid { background: var(--green); color: white; border-color: var(--green); }
.strategy-btn.active.mitigate { background: var(--orange); color: white; border-color: var(--orange); }
.strategy-btn.active.accept { background: var(--red); color: white; border-color: var(--red); }
.strategy-btn.active.transfer { background: var(--blue); color: white; border-color: var(--blue); }

/* ===== RISK SELECT ===== */
.risk-select {
  padding: 6px 10px; border: 1px solid var(--border); border-radius: 6px; max-width: 320px; font-size: 13px;
}
.filter-select, .filter-input {
  padding: 8px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px;
}
.filter-input { min-width: 200px; }

/* ===== STAGE PROGRESS BAR ===== */
.stage-progress {
  display: flex; gap: 0; margin-bottom: 20px; overflow-x: auto;
  background: white; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 12px 8px;
}
.stage-step {
  flex: 1; min-width: 80px; text-align: center; position: relative; padding: 4px;
  font-size: 11px; color: var(--gray); cursor: pointer; transition: background 0.15s;
  border-radius: 6px;
}
.stage-step:hover { background: var(--gray-bg); }
.stage-step-num {
  width: 28px; height: 28px; border-radius: 50%; margin: 0 auto 4px;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  background: var(--gray-bg); border: 2px solid var(--border); color: var(--gray); font-size: 13px;
}
.stage-step.completed .stage-step-num { background: var(--green); border-color: var(--green); color: white; }
.stage-step.in_progress .stage-step-num { background: var(--blue); border-color: var(--blue); color: white; animation: pulse 1.5s infinite; }
.stage-step.blocked .stage-step-num { background: var(--red); border-color: var(--red); color: white; }
.stage-step-name { font-weight: 600; font-size: 12px; }
.stage-step-status { font-size: 10px; margin-top: 2px; }
.stage-step:not(:last-child)::after {
  content: ''; position: absolute; top: 18px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: 0;
}
.stage-step.completed:not(:last-child)::after { background: var(--green); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ===== OVERALL PROGRESS ===== */
.overall-progress { height: 10px; background: var(--gray-bg); border-radius: 5px; overflow: hidden; }
.overall-progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 5px; transition: width 0.3s; }

/* ===== STAGE DETAIL ===== */
.stage-detail {
  background: white; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  margin-bottom: 12px; overflow: hidden;
}
.stage-detail-header {
  padding: 12px 16px; background: var(--gray-bg); font-weight: 600; font-size: 14px;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  transition: background 0.15s;
}
.stage-detail-header:hover { background: #e8e9eb; }
.stage-header-left { display: flex; align-items: center; gap: 12px; }
.stage-num {
  width: 32px; height: 32px; border-radius: 8px; background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0;
}
.stage-header-right { display: flex; align-items: center; gap: 8px; }
.stage-toggle { font-size: 12px; transition: transform 0.2s; color: var(--gray); }
.stage-detail.expanded .stage-toggle { transform: rotate(180deg); }
.stage-detail-body { padding: 16px; display: none; }
.stage-detail.expanded .stage-detail-body { display: block; }
.stage-status-select {
  padding: 4px 8px; border: 1px solid var(--border); border-radius: 4px; font-size: 12px; cursor: pointer;
}

.stage-section { margin-bottom: 16px; }
.stage-section > strong { font-size: 13px; display: block; margin-bottom: 6px; }

.stage-risks { display: flex; flex-direction: column; gap: 4px; }
.stage-risk-item {
  display: flex; align-items: center; gap: 8px; padding: 6px 8px;
  background: var(--gray-bg); border-radius: 6px; font-size: 13px;
}
.stage-risk-name { flex: 1; }

.stage-docs { font-size: 13px; }
.stage-doc-item { padding: 4px 0; }

.stage-incidents { display: flex; flex-direction: column; gap: 4px; }
.stage-incident-item {
  display: flex; align-items: center; gap: 8px; padding: 6px 8px;
  background: var(--red-bg); border-radius: 6px; font-size: 13px;
}

.stage-actions { display: flex; gap: 8px; margin-top: 8px; }
.stage-notes { margin-top: 12px; }
.stage-notes textarea {
  width: 100%; min-height: 50px; padding: 8px; border: 1px solid var(--border);
  border-radius: 4px; font-size: 13px; resize: vertical;
}

/* ===== CHECKLIST ===== */
.checklist-item {
  display: flex; align-items: center; gap: 8px; padding: 6px 0;
  border-bottom: 1px solid var(--gray-bg);
}
.checklist-item input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
.checklist-item .cl-text { flex: 1; font-size: 13px; }
.checklist-item.checked .cl-text { text-decoration: line-through; color: var(--gray); }
.checklist-item .cl-del { background: none; border: none; color: var(--red); cursor: pointer; font-size: 16px; }
.cl-add-row { display: flex; gap: 6px; margin-top: 6px; }
.cl-add-row input {
  flex: 1; padding: 6px 10px; border: 1px solid var(--border); border-radius: 4px; font-size: 13px;
}

/* ===== DOSSIER ===== */
.dossier-param { display: flex; gap: 8px; padding: 4px 0; font-size: 14px; }
.dossier-param strong { min-width: 140px; color: var(--gray); font-weight: 500; }

/* ===== RESPONSIVE ===== */
.rmc-actions {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  align-items: center;
}
.rmc-notes-input {
  flex: 1;
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
}
.filter-select, .filter-input {
  padding: 6px 10px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-size: 13px;
  background: white;
}

@media (max-width: 768px) {
  :root { --sidebar-w: 260px; }
  .sidebar { transform: translateX(calc(-1 * var(--sidebar-w))); }
  .sidebar.mobile-open { transform: translateX(0); }
  .main { margin-left: 0; }
  .hamburger { display: block; }
  .content { padding: 16px; }
  .form-row { flex-direction: column; }
  .stats-row { gap: 8px; }
  .stat-card { min-width: 100px; padding: 12px; }
  .stat-card .stat-num { font-size: 24px; }
  th, td { font-size: 12px; padding: 6px 4px; }
  .strategy-summary { grid-template-columns: repeat(2, 1fr); }
  .risk-map { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
  .deal-view-header { flex-direction: column; }
  .stage-header-right { flex-wrap: wrap; }
  .stage-status-select { font-size: 11px; }
  .tab { padding: 8px 12px; font-size: 13px; }
}

/* ===== Wizard ===== */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.wizard-step.active { opacity: 1; }
.wizard-step.done { opacity: 0.7; }
.wizard-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  margin-bottom: 4px;
}
.wizard-step.active .wizard-step-num { background: var(--blue); color: white; }
.wizard-step.done .wizard-step-num { background: var(--green); color: white; }
.wizard-step-label { font-size: 11px; white-space: nowrap; }
.wizard-progress-bar {
  height: 3px;
  background: var(--gray-bg);
  border-radius: 2px;
  margin-bottom: 20px;
}
.wizard-progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.3s;
}
.wizard-review {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 16px;
}
.wizard-review-section {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.wizard-review-section:last-child { border-bottom: none; }
.risk-appetite-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.risk-appetite-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.risk-appetite-option:hover { border-color: var(--blue-light); }
.risk-appetite-option.selected { border-color: var(--blue); background: var(--blue-bg); }
.risk-appetite-option input[type=radio] { margin-top: 4px; }
.risk-appetite-option p { font-size: 13px; color: var(--gray); margin-top: 2px; }

/* ===== Risk Card Owner ===== */
.rmc-owner {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}
.rmc-owner label { font-size: 11px; color: var(--gray); white-space: nowrap; }
.rmc-owner-select {
  flex: 1;
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
}

/* ===== Stage Owner ===== */
.stage-owner-select {
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  margin-left: 8px;
}
