* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-tertiary: #21262d;
  --border: #30363d;
  --text-primary: #c9d1d9;
  --text-secondary: #8b949e;
  --accent: #58a6ff;
  --accent-dim: #1f4068;
  --success: #3fb950;
  --danger: #f85149;
  --warning: #d29922;
  --sidebar-w: 210px;
  --topbar-h: 52px;
  --bottom-nav-h: 60px;
  --radius: 8px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  height: 100dvh;
  overflow: hidden;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

/* ===== GUARD ===== */
#guard {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guard-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.guard-logo { font-size: 36px; margin-bottom: 12px; }
.guard-box h2 { font-size: 18px; font-weight: 600; color: var(--accent); margin-bottom: 6px; }
.guard-box p { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }

.guard-box input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
  margin-bottom: 12px;
  font-size: 15px;
  transition: border-color 0.2s;
}
.guard-box input:focus { border-color: var(--accent); }

.guard-box button {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: var(--radius);
  background: #238636;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}
.guard-box button:hover { background: #2ea043; }

#guardErr {
  margin-top: 12px;
  font-size: 12px;
  color: var(--danger);
  display: none;
}

/* ===== LAYOUT ===== */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  z-index: 200;
  overflow-y: auto;
}

.main {
  margin-left: var(--sidebar-w);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ===== SIDEBAR LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.logo-icon { font-size: 22px; }
.logo-text { font-size: 17px; font-weight: 700; color: var(--accent); letter-spacing: -0.3px; }

/* ===== MENU ===== */
.menu { display: flex; flex-direction: column; gap: 2px; }

.menu-item {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-item:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.menu-item.active { background: var(--accent-dim); color: var(--accent); font-weight: 500; }
.menu-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }

/* ===== PINNED SECTION ===== */
.pinned-section { margin-top: 20px; flex: 1; min-height: 0; }

.pinned-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.pin-manage-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.15s;
}
.pin-manage-btn:hover { color: var(--accent); }

.pinned-list { display: flex; flex-direction: column; gap: 2px; }
.pinned-empty { font-size: 12px; color: var(--text-secondary); padding: 6px 10px; opacity: 0.6; }

.pinned-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.15s;
}
.pinned-item:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.pinned-item-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.pinned-item-remove {
  opacity: 0;
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 14px;
  padding: 0 2px;
  line-height: 1;
  transition: opacity 0.15s;
}
.pinned-item:hover .pinned-item-remove { opacity: 1; }

/* ===== SIDEBAR FOOTER ===== */
.sidebar-footer {
  padding: 12px 6px 4px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* ===== TOPBAR (mobile only) ===== */
.topbar {
  display: none;
  align-items: center;
  gap: 12px;
  height: var(--topbar-h);
  min-height: var(--topbar-h);
  padding: 0 14px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  z-index: 100;
}

.topbar-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.topbar-btn:active { background: var(--bg-tertiary); }

.topbar-title { flex: 1; font-size: 16px; font-weight: 600; color: var(--accent); }
.topbar-actions { display: flex; gap: 6px; }

/* ===== VIEWS =====
 * Kunci utama: view aktif = flex column, overflow hidden,
 * konten dalam view yang scroll — bukan view-nya sendiri.
 */
.view {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;       /* penting! tanpa ini flex child ga bisa shrink */
  overflow: hidden;
}

.view.active { display: flex; }

.view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 0;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}
.view-header h2 { font-size: 18px; font-weight: 600; color: var(--accent); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-family: 'SF Mono', 'Courier New', monospace;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 7px 12px;
  background: var(--bg-secondary);
  border-radius: 6px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-breadcrumb {
  padding: 10px 10px 0;
  flex-shrink: 0;
}

.breadcrumb-scroll {
  font-family: 'SF Mono', 'Courier New', monospace;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 7px 12px;
  background: var(--bg-secondary);
  border-radius: 6px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* ===== BUTTONS ===== */
.actions { display: flex; gap: 8px; flex-wrap: wrap; }

.btn {
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  transition: all 0.15s;
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.4;
  flex-shrink: 0;
}
.btn:hover { background: var(--border); }
.btn:active { transform: scale(0.97); }

.btn-sm { padding: 5px 10px; font-size: 12px; }

.btn-primary { background: #238636; color: white; border-color: #2ea043; }
.btn-primary:hover { background: #2ea043; }
.btn-primary:disabled { background: var(--bg-tertiary); cursor: not-allowed; opacity: 0.5; }

.btn-secondary { background: var(--bg-tertiary); }

.btn-action { padding: 8px 16px; border-radius: 6px; font-size: 13px; }
.btn-danger-soft { color: var(--danger); border-color: rgba(248,81,73,0.3); }
.btn-danger-soft:hover { background: rgba(248,81,73,0.1); }

/* ===== FILE VIEW LAYOUT ===== */
/* view-files: topbar breadcrumb (shrink 0) + file-browser (flex 1 scroll) */
#view-files {
  padding: 0;
}

.files-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px 8px;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.file-browser {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 10px 10px;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.file-item {
  padding: 10px 12px;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.12s;
  min-height: 48px;
  font-size: 14px;
  user-select: none;
}
.file-item:hover { background: var(--bg-tertiary); border-color: var(--border); }
.file-item:active { transform: scale(0.99); }

.file-item.dir::before  { content: '📁'; font-size: 16px; }
.file-item.file::before { content: '📄'; font-size: 16px; }
.file-item.back {
  background: transparent;
  color: var(--accent);
  font-weight: 500;
  border-color: var(--border);
}
.file-item.back::before { content: '←'; font-size: 16px; }
.file-item.back:hover { background: var(--bg-tertiary); }
.file-item.pinned::after { content: '📌'; font-size: 11px; opacity: 0.7; }

.file-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-size { font-size: 11px; color: var(--text-secondary); flex-shrink: 0; }

/* ===== CONTEXT MENU ===== */
.context-menu {
  position: fixed;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  z-index: 5000;
  min-width: 165px;
  overflow: hidden;
  animation: ctxIn 0.12s ease;
}
@keyframes ctxIn {
  from { opacity: 0; transform: scale(0.96) translateY(-4px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.context-item {
  padding: 11px 14px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.12s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.context-item:hover { background: var(--bg-tertiary); }
.context-item:active { background: var(--border); }
.context-danger { color: var(--danger); }

/* ===== BOT VIEW =====
 * view-bot: flex column, overflow hidden
 * konten dalam: scroll area yang bisa flex-shrink
 */
#view-bot {
  overflow: hidden;
}

/* Wrapper yang bisa di-scroll untuk semua konten bot */
.bot-scroll-area {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 10px 80px; /* padding bottom untuk FAB */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bot-status-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-secondary);
  flex-shrink: 0;
  transition: all 0.3s;
}
.dot.online { background: var(--success); box-shadow: 0 0 8px var(--success); }

.bot-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== PANEL CARD ===== */
.panel-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;  /* kartu tidak shrink — parent scroll yang handle */
}

.panel-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-card-title { font-size: 14px; font-weight: 600; color: var(--text-primary); }

/* ===== LOGS ===== */
.logs-toolbar {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.log-filter {
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s;
}
.log-filter.active { background: var(--accent-dim); color: var(--accent); border-color: var(--accent); }

/* Log area: fixed height, scroll sendiri */
.logs {
  background: var(--bg-primary);
  padding: 10px 12px;
  border-radius: 6px;
  font-family: 'SF Mono', 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.6;
  height: 220px;      /* fixed height — bukan flex */
  overflow-y: auto;
  overflow-x: hidden;
  color: var(--text-secondary);
  -webkit-overflow-scrolling: touch;
  word-break: break-all;
  white-space: pre-wrap;
}

/* ===== TOGGLE ===== */
.toggle-wrap { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.toggle-wrap input[type=checkbox] {
  width: 32px;
  height: 18px;
  appearance: none;
  background: var(--bg-tertiary);
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.toggle-wrap input[type=checkbox]::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-secondary);
  transition: transform 0.2s, background 0.2s;
}
.toggle-wrap input[type=checkbox]:checked { background: var(--accent); border-color: var(--accent); }
.toggle-wrap input[type=checkbox]:checked::after { transform: translateX(14px); background: white; }
.toggle-label { font-size: 12px; color: var(--text-secondary); }

/* ===== PLUGINS ===== */
.plugins-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.plugin-item {
  padding: 10px;
  background: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  word-break: break-word;
}

/* ===== SYSTEM VIEW ===== */
#view-system {
  overflow: hidden;
}

.system-scroll-area {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.system-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.system-card-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.system-card-value {
  font-family: 'SF Mono', 'Courier New', monospace;
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ===== FAB ===== */
.fab-group {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 16px);
  right: 16px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  z-index: 300;
  pointer-events: none;
}
.fab-group > * { pointer-events: auto; }

.fab-main {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  line-height: 1;
}
.fab-main:active { transform: scale(0.93); }
.fab-main.open { transform: rotate(45deg); }

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.fab-item {
  padding: 10px 16px;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: background 0.15s;
}
.fab-item:hover { background: var(--bg-tertiary); }
.fab-item:active { transform: scale(0.97); }

/* ===== BOTTOM NAV ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-h);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 400;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 10px;
  transition: color 0.15s;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bottom-nav-item.active { color: var(--accent); }
.bottom-nav-icon { font-size: 20px; }

/* ===== SIDEBAR OVERLAY ===== */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
}

/* ===== MODAL / EDITOR ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  gap: 10px;
}

#editorFileName {
  font-family: 'SF Mono', 'Courier New', monospace;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.editor-actions { display: flex; gap: 8px; flex-shrink: 0; }

#editorContent {
  flex: 1;
  min-height: 0;
  padding: 16px;
  background: var(--bg-primary);
  color: var(--text-primary);
  border: none;
  font-family: 'SF Mono', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
  resize: none;
  outline: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  tab-size: 2;
}

.editor-status {
  padding: 8px 16px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.editor-status.success { color: var(--success); }
.editor-status.error   { color: var(--danger); }

.loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
  font-size: 13px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border); }

/* =============================
   MOBILE
   ============================= */
@media (max-width: 768px) {
  body { overflow: hidden; }

  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 500;
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0,0,0,0.5);
  }
  .sidebar-overlay.open { display: block; }

  .main {
    margin-left: 0;
    /* tinggi: full dvh dikurangi topbar dan bottom nav */
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .topbar { display: flex; }

  /* Flex container setelah topbar: ambil sisa tinggi */
  .views-wrapper {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* dikurangi bottom nav */
    padding-bottom: var(--bottom-nav-h);
  }

  .view { padding: 0; }

  /* Files view mobile */
  .files-header-bar { padding: 10px 10px 6px; }
  .file-browser { padding: 0 8px 8px; }
  .file-item { min-height: 50px; font-size: 15px; }

  /* Bot scroll area mobile — isi semua sisa ruang */
  .bot-scroll-area {
    padding: 8px 8px 80px;
  }

  /* Logs lebih kecil di mobile */
  .logs { height: 180px; font-size: 10.5px; }

  .bot-status-card { flex-direction: column; align-items: flex-start; }
  .bot-actions { width: 100%; }
  .bot-actions .btn { flex: 1; text-align: center; }

  .desktop-only { display: none !important; }

    #editorContent { font-size: 14px; }
}

/* =============================
   DESKTOP
   ============================= */
@media (min-width: 769px) {
  .mobile-only { display: none !important; }
  .topbar { display: none !important; }

  .views-wrapper {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .view { padding: 0; }

  /* Files view desktop */
  .files-header-bar { padding: 16px 16px 10px; }
  .file-browser { padding: 0 16px 16px; }

  /* Bot scroll */
  .bot-scroll-area { padding: 16px 16px 24px; }

  /* System scroll */
  .system-scroll-area { padding: 16px; }
  .system-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

  .modal-content {
    border-radius: var(--radius);
    width: 90%;
    height: 90%;
    max-width: 1400px;
    max-height: 92vh;
  }

  /* Logs lebih tinggi di desktop */
  .logs { height: 300px; }
}

@media (min-width: 769px) and (max-width: 1200px) {
  :root { --sidebar-w: 190px; }
}

/* ===== CODEMIRROR EDITOR ===== */
#editorContent {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

/* CM container fill full area */
#editorContent .cm-editor {
  height: 100%;
  width: 100%;
}

#editorContent .cm-editor.cm-focused {
  outline: none;
}

/* Lang badge di editor header */
.editor-lang-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}