:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-muted: #f1f4f7;
  --border: #d9e0e8;
  --text: #17202a;
  --muted: #667085;
  --teal: #0f766e;
  --teal-soft: #d8f3ee;
  --blue: #2563eb;
  --amber: #b7791f;
  --amber-soft: #fff3d6;
  --red: #c2410c;
  --red-soft: #ffe6dc;
  --green: #2f7d32;
  --green-soft: #e3f4df;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 247, 249, 0.96)),
    var(--bg);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), #17324d);
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 22px;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.workspace {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 73px;
  min-height: calc(100vh - 73px);
  padding: 18px 14px;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
}

.nav-item {
  width: 100%;
  min-height: 42px;
  margin-bottom: 6px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.nav-item:hover,
.nav-item:focus-visible {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface);
}

.nav-item.active {
  color: var(--text);
  border-color: #badbd6;
  background: var(--teal-soft);
  font-weight: 700;
}

.main-content {
  width: min(100%, 1440px);
  padding: 28px;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 26px;
  line-height: 34px;
}

h2 {
  font-size: 16px;
  line-height: 22px;
}

h3 {
  color: var(--muted);
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 8px;
}

.section-heading p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.button,
.icon-button,
.compact-select {
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: #ffffff;
  border-color: var(--teal);
  background: var(--teal);
}

.button.secondary {
  color: var(--text);
  background: var(--surface);
}

.button:hover,
.icon-button:hover,
.export-card:hover {
  transform: translateY(-1px);
}

.icon-button {
  width: 38px;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
}

.compact-select {
  width: 126px;
  padding: 0 8px;
  color: var(--text);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.metric-card,
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card {
  min-height: 136px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  opacity: 0.95;
}

.metric-card.glucose::after {
  background: var(--red-soft);
}

.metric-card.pressure::after {
  background: #dfeaff;
}

.metric-card.medicine::after {
  background: var(--green-soft);
}

.metric-card.symptom::after {
  background: var(--amber-soft);
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-card strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 30px;
  line-height: 38px;
}

.dashboard-grid,
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.panel {
  padding: 18px;
  min-width: 0;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 28px;
  margin-bottom: 14px;
}

.panel-header span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.chart-panel canvas {
  display: block;
  width: 100%;
  height: 260px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfcfe;
}

.record-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.compact-list {
  display: grid;
  gap: 8px;
}

.medication-list {
  display: grid;
  gap: 10px;
}

.medication-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
}

.medication-item strong,
.medication-item span {
  display: block;
}

.medication-item strong {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.type-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  background: var(--surface-muted);
  color: var(--muted);
}

.type-badge.prescription {
  color: var(--teal);
  background: var(--teal-soft);
}

.type-badge.otc {
  color: var(--blue);
  background: #dfeaff;
}

.type-badge.supplement {
  color: var(--green);
  background: var(--green-soft);
}

.medication-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 17px;
}

.medication-item .type-badge {
  display: inline-flex;
  margin-top: 0;
}

.medication-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.medication-actions .button {
  min-width: 58px;
  height: 32px;
  padding: 0 9px;
  font-size: 12px;
}

.empty-state {
  min-height: 52px;
  padding: 14px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface-muted);
  font-size: 13px;
}

.list-item {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
}

.list-item strong {
  font-size: 14px;
  line-height: 18px;
}

.list-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
}

.segmented {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(96px, 1fr);
  gap: 4px;
  max-width: 100%;
  padding: 4px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-muted);
  overflow-x: auto;
}

.segmented button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.segmented button.active {
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
  font-weight: 700;
}

.record-form {
  display: none;
}

.record-form.active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.stacked-form,
.upload-form {
  display: grid;
  gap: 12px;
}

.inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--text);
  background: #ffffff;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 78px;
  line-height: 20px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

input[type="range"] {
  padding: 0;
}

.wide {
  grid-column: 1 / -1;
}

.upload-form {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.data-table {
  overflow-x: auto;
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.data-table th,
.data-table td {
  height: 42px;
  padding: 9px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 13px;
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  font-size: 12px;
  background: var(--surface-muted);
}

.data-table td:last-child {
  width: 54px;
}

.delete-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--red);
  background: #ffffff;
  cursor: pointer;
}

.summary-output {
  display: grid;
  gap: 14px;
}

.summary-block {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 14px;
}

.summary-block h3 {
  color: var(--text);
  margin-bottom: 8px;
}

.summary-block ul {
  margin: 0;
  padding-left: 18px;
}

.summary-block li {
  margin: 6px 0;
  line-height: 20px;
}

.flag-list {
  display: grid;
  gap: 8px;
}

.flag {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.flag.info {
  background: #eef6ff;
}

.flag.attention {
  background: var(--amber-soft);
}

.flag.urgent {
  background: var(--red-soft);
}

.flag strong {
  font-size: 13px;
}

.flag span {
  color: var(--muted);
  font-size: 12px;
}

.export-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.export-card {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.export-card strong,
.export-card span {
  display: block;
}

.export-card strong {
  font-size: 15px;
  margin-bottom: 6px;
}

.export-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 17px;
}

.notice {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #f4d4b9;
  border-radius: 8px;
  background: #fff8ef;
}

.notice strong {
  color: var(--red);
}

.notice span {
  color: var(--muted);
  line-height: 20px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: none;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.toast.active {
  display: block;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--surface-muted);
}

.status-pill.high,
.status-pill.urgent {
  color: var(--red);
  background: var(--red-soft);
}

.status-pill.low,
.status-pill.attention {
  color: var(--amber);
  background: var(--amber-soft);
}

.status-pill.normal,
.status-pill.info {
  color: var(--green);
  background: var(--green-soft);
}

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

  .side-nav {
    position: sticky;
    top: 72px;
    z-index: 8;
    display: flex;
    min-height: auto;
    overflow-x: auto;
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-item {
    flex: 0 0 auto;
    width: auto;
    min-width: 96px;
    margin: 0 6px 0 0;
    text-align: center;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid,
  .split-grid,
  .record-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    padding: 12px 14px;
  }

  .topbar-actions {
    justify-content: stretch;
  }

  .topbar-actions > * {
    flex: 1 1 auto;
  }

  .workspace {
    display: block;
  }

  .side-nav {
    top: 132px;
  }

  .main-content {
    padding: 18px 14px 28px;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .metric-grid,
  .form-grid,
  .inline-fields,
  .export-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 118px;
  }

  .segmented {
    display: flex;
    width: 100%;
  }

  .segmented button {
    flex: 1 0 92px;
  }

  .panel {
    padding: 14px;
  }

  .medication-item {
    grid-template-columns: 1fr;
  }

  .medication-actions {
    justify-content: flex-start;
  }

  .chart-panel canvas {
    height: 220px;
  }
}

/* Premium Dark Theme Variable Overrides */
[data-theme="dark"] {
  --bg: #0b0f19;
  --surface: #151f32;
  --surface-muted: #1e293b;
  --border: #2c354d;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --teal: #14b8a6;
  --teal-soft: #115e59;
  --blue: #3b82f6;
  --amber: #fbbf24;
  --amber-soft: #78350f;
  --red: #ef4444;
  --red-soft: #7f1d1d;
  --green: #22c55e;
  --green-soft: #14532d;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

body {
  transition: background 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] body {
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.9), rgba(21, 31, 50, 0.95)), var(--bg);
}

[data-theme="dark"] .topbar {
  background: rgba(21, 31, 50, 0.85);
  border-bottom-color: var(--border);
}

[data-theme="dark"] .side-nav {
  background: rgba(21, 31, 50, 0.7);
  border-right-color: var(--border);
}

[data-theme="dark"] input, 
[data-theme="dark"] select, 
[data-theme="dark"] textarea {
  background: #1e293b;
  color: #f3f4f6;
  border-color: var(--border);
}

[data-theme="dark"] .chart-panel canvas {
  background: #111a2e;
  border-color: var(--border);
}

[data-theme="dark"] .list-item,
[data-theme="dark"] .medication-item,
[data-theme="dark"] .export-card {
  background: #1a2438;
  border-color: var(--border);
}

[data-theme="dark"] .segmented {
  background: #1e293b;
}

[data-theme="dark"] .segmented button.active {
  background: #151f32;
  color: #f3f4f6;
}

/* Theme Switching Icons */
.theme-icon-light { display: block; }
.theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: block; }

/* Mobile Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  grid-template-columns: repeat(6, 1fr);
  height: 64px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
}

[data-theme="dark"] .bottom-nav {
  background: rgba(21, 31, 50, 0.85);
  border-top-color: var(--border);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  gap: 3px;
  transition: color 0.2s;
}

.bottom-nav-item.active {
  color: var(--teal);
  font-weight: 700;
}

.bottom-nav-icon {
  font-size: 18px;
}

@media (max-width: 720px) {
  .bottom-nav {
    display: grid;
  }
  .side-nav {
    display: none !important;
  }
  .main-content {
    padding-bottom: 80px; /* Space for bottom navigation */
  }
}

/* Goals Grid and Progress Rings */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

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

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

.goal-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.goal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.progress-ring-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.progress-ring {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: none;
  stroke: var(--surface-muted);
  stroke-width: 8;
}

.progress-ring-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.water-ring {
  stroke: #3b82f6;
}

.exercise-ring {
  stroke: #10b981;
}

.progress-ring-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.progress-ring-label strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.progress-ring-label span {
  font-size: 9px;
  color: var(--muted);
}

.goal-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.goal-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.goal-info p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.goal-info .button.small {
  height: 26px;
  min-width: auto;
  padding: 0 10px;
  font-size: 11px;
  margin-top: 4px;
}

/* Weight and Sleep Card Icons & Badges */
.weight-display, .sleep-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface-muted);
  flex-shrink: 0;
  font-weight: 800;
  color: var(--text);
  gap: 2px;
  transition: background-color 0.3s;
}

.weight-icon, .sleep-icon {
  font-size: 18px;
}

.weight-unit, .sleep-unit {
  font-size: 9px;
  font-weight: 500;
  color: var(--muted);
}

.bmi-text {
  font-size: 11px !important;
  font-weight: 700;
  color: var(--teal) !important;
}

/* Transitions & Glow Buttons */
.button, .icon-button, .nav-item, .export-card, .quick-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.button.glow {
  box-shadow: 0 0 12px rgba(15, 118, 110, 0.35);
}

.button.glow:hover {
  box-shadow: 0 0 20px rgba(15, 118, 110, 0.6);
  transform: translateY(-1px);
}

/* Quick Actions Button Widget */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .quick-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  gap: 6px;
}

.quick-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.quick-icon {
  font-size: 24px;
}

.quick-btn span:last-child {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

/* Premium Custom Confirm Dialog Modal */
.confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.confirm-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.confirm-dialog {
  width: min(340px, calc(100vw - 32px));
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transform: scale(0.9);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirm-overlay.active .confirm-dialog {
  transform: scale(1);
}

.confirm-dialog p {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}

.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.confirm-actions .button {
  height: 38px;
  font-size: 13px;
  min-width: 90px;
}


