/* ─── Reset & Base ────────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Чистый чёрный */
  --bg-primary:    #000000;
  --bg-secondary:  #050a05;
  --bg-tertiary:   #0a120a;
  --bg-card:       #060e06;
  --border:        #0d2e0d;
  --border-light:  #1a5c1a;

  /* Текст — зелёные оттенки, всегда контрастные */
  --text-primary:  #b8ffb8;
  --text-secondary:#5fcc5f;
  --text-muted:    #2e6b2e;

  /* Основной акцент */
  --accent:        #00ff41;
  --accent-hover:  #33ff66;
  --accent-dim:    rgba(0,255,65,0.08);
  --accent-glow:   rgba(0,255,65,0.45);

  /* Красный */
  --danger:        #ff1744;
  --danger-dim:    rgba(255,23,68,0.12);
  --danger-glow:   rgba(255,23,68,0.40);

  /* Фиолетовый */
  --purple:        #cc00ff;
  --purple-dim:    rgba(204,0,255,0.12);
  --purple-glow:   rgba(204,0,255,0.40);

  /* Кнопки */
  --green-btn:     #004d1a;
  --green-btn-h:   #006622;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --shadow: 0 4px 24px rgba(0,0,0,0.9);

  /* Переиспользуемые glow */
  --glow-sm: 0 0 8px rgba(0,255,65,0.45);
  --glow-md: 0 0 14px rgba(0,255,65,0.50), 0 0 30px rgba(0,255,65,0.20);
  --glow-lg: 0 0 20px rgba(0,255,65,0.60), 0 0 50px rgba(0,255,65,0.25);
}

html, body {
  height: 100%;
  overflow: hidden;
  background: #000;
  color: var(--text-primary);
  font-family: 'Cascadia Code', 'Fira Code', 'JetBrains Mono', monospace;
  font-size: 15px;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

/* Tron-сетка на фоне */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,255,65,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,65,0.022) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Layout ──────────────────────────────────────────────────────────────── */
#app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  background: #000;
  position: relative;
  z-index: 1;
}

/* ─── Header ──────────────────────────────────────────────────────────────── */
#header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 54px;
  background: #000;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 rgba(0,255,65,0.15), 0 2px 20px rgba(0,0,0,0.8);
  flex-shrink: 0;
  z-index: 10;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 17px;
  font-weight: 900;
  color: var(--accent);
  text-shadow: var(--glow-md);
  letter-spacing: -1px;
  font-family: monospace;
  line-height: 1;
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: var(--glow-md);
}

#header .spacer { flex: 1; }

#header .header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ─── Tab Bar ─────────────────────────────────────────────────────────────── */
#tab-bar {
  display: flex;
  background: #000;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  z-index: 9;
}
#tab-bar::-webkit-scrollbar { display: none; }

.tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  min-height: 56px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: inherit;
  position: relative;
}
.tab-btn:active { background: var(--accent-dim); }

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(0,255,65,0.05);
  text-shadow: var(--glow-sm);
}

.tab-btn .tab-icon {
  font-size: 20px;
  line-height: 1;
  display: block;
  color: inherit;
  /* Важно: text-shadow берётся от родителя через inherit */
}

.tab-btn.active .tab-icon {
  text-shadow: var(--glow-md);
}

.tab-btn .tab-label {
  font-size: 9px;
  display: block;
  letter-spacing: 1px;
}

/* ─── Content ─────────────────────────────────────────────────────────────── */
#content {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #000;
}

.panel {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}
.panel.active { display: flex; }

/* ─── Terminal Panel ──────────────────────────────────────────────────────── */
#panel-terminal { background: #000; }

#terminal-container {
  flex: 1;
  overflow: hidden;
  padding: 6px 4px 4px;
  background: #000;
  position: relative;
}

.xterm { height: 100%; }
.xterm-viewport {
  overflow-y: scroll !important;
  touch-action: pan-y !important;
  -webkit-overflow-scrolling: touch !important;
  background: #000 !important;
}
.xterm-screen { padding: 0 2px; }
#terminal-container { touch-action: pan-y; }

/* Полоса сканирования */
@keyframes scan-line {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 0.08; }
  95%  { opacity: 0.08; }
  100% { top: 100%; opacity: 0; }
}
#terminal-container::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  animation: scan-line 10s linear infinite;
  pointer-events: none;
  z-index: 2;
}

/* ─── Terminal Toolbar ────────────────────────────────────────────────────── */
#terminal-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #000;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -1px 0 rgba(0,255,65,0.10);
  flex-shrink: 0;
  min-height: 56px;
  position: relative;
  z-index: 5;
}

#terminal-toolbar .toolbar-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
  padding-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

/* Все tb-кнопки — зелёные пиктограммы, растянуты на всю ширину */
#terminal-toolbar .tb-btn {
  flex: 1;
  height: 44px;
  font-size: 18px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  background: rgba(0,255,65,0.04);
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: inherit;
  line-height: 1;
}
#terminal-toolbar .tb-btn:active {
  background: rgba(0,255,65,0.12);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
  transform: scale(0.93);
}

/* ── ENTER — главная кнопка ────── */
#enter-btn {
  flex: 2 !important;
  min-width: 0 !important;
  height: 50px !important;
  font-size: 26px !important;
  color: var(--accent) !important;
  background: rgba(0,255,65,0.10) !important;
  border: 2px solid var(--accent) !important;
  border-radius: 10px !important;
  box-shadow:
    0 0 10px rgba(0,255,65,0.55),
    0 0 24px rgba(0,255,65,0.25),
    inset 0 0 10px rgba(0,255,65,0.07) !important;
  text-shadow: 0 0 10px var(--accent) !important;
}
#enter-btn:active {
  background: rgba(0,255,65,0.22) !important;
  box-shadow:
    0 0 18px rgba(0,255,65,0.85),
    0 0 40px rgba(0,255,65,0.40),
    inset 0 0 14px rgba(0,255,65,0.15) !important;
  transform: scale(0.94) !important;
}

/* ─── Scroll-to-bottom ────────────────────────────────────────────────────── */
.scroll-bottom-btn {
  position: absolute;
  right: 14px;
  bottom: 66px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,255,65,0.10);
  color: var(--accent);
  border: 2px solid var(--accent);
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-md);
  text-shadow: var(--glow-sm);
  opacity: 0;
  transform: translateY(12px) scale(0.85);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  font-family: inherit;
}
.scroll-bottom-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.scroll-bottom-btn:active { transform: scale(0.92); }

/* ─── Panel Toolbar ───────────────────────────────────────────────────────── */
.panel-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #000;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
  min-height: 56px;
  position: relative;
  z-index: 5;
}

.panel-toolbar h2 {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: var(--glow-sm);
}

.panel-toolbar .spacer { flex: 1; }

/* ─── Кнопки ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 16px;
  height: 40px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: inherit;
}

/* Основная — зелёная */
.btn-primary {
  background: var(--green-btn);
  color: var(--accent);
  border: 1px solid rgba(0,255,65,0.40);
  box-shadow: 0 0 10px rgba(0,255,65,0.20);
  text-shadow: 0 0 6px rgba(0,255,65,0.5);
}
.btn-primary:active {
  background: var(--green-btn-h);
  box-shadow: 0 0 18px rgba(0,255,65,0.55);
  transform: scale(0.97);
}

/* Вторичная */
.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.btn-secondary:active {
  background: rgba(0,255,65,0.06);
  color: var(--accent);
  border-color: var(--accent);
  transform: scale(0.97);
}

/* Удаление — красная */
.btn-danger {
  background: transparent;
  color: var(--danger);
  border: 1px solid transparent;
}
.btn-danger:active {
  background: var(--danger-dim);
  border-color: var(--danger);
  box-shadow: 0 0 10px var(--danger-glow);
}

/* Иконочная кнопка */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 16px;
  transition: all 0.15s;
  flex-shrink: 0;
  font-family: inherit;
  line-height: 1;
}
.btn-icon:active {
  color: var(--accent);
  background: rgba(0,255,65,0.08);
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
  transform: scale(0.93);
}

/* Выход — фиолетовый */
#logout-btn {
  color: var(--purple);
  border-color: rgba(204,0,255,0.25);
}
#logout-btn:active {
  background: var(--purple-dim);
  border-color: var(--purple);
  box-shadow: 0 0 10px var(--purple-glow);
}

/* ─── Search ──────────────────────────────────────────────────────────────── */
.search-input {
  flex: 1;
  background: #000;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  color: var(--text-primary);
  padding: 0 14px;
  height: 40px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,255,65,0.10), var(--glow-sm);
}
.search-input::placeholder { color: var(--text-muted); }

/* ─── Lists ───────────────────────────────────────────────────────────────── */
.panel-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  -webkit-overflow-scrolling: touch;
  background: #000;
}

.list-group { margin-bottom: 10px; }

.list-group-header {
  padding: 8px 12px 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple);
  text-shadow: 0 0 8px var(--purple-glow);
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid var(--border);
  margin-bottom: 4px;
  min-height: 62px;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

/* Левая полоска */
.list-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--border-light);
  transition: background 0.15s, box-shadow 0.15s;
}
.list-item:active {
  background: rgba(0,255,65,0.05);
  border-color: rgba(0,255,65,0.30);
}
.list-item:active::before {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.list-item .item-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  line-height: 1;
  color: var(--accent);
  text-shadow: var(--glow-sm);
}

.list-item .item-body { flex: 1; min-width: 0; }

.list-item .item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-item .item-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.list-item .item-code {
  font-family: inherit;
  font-size: 11px;
  color: var(--accent);
  background: rgba(0,255,65,0.06);
  border: 1px solid rgba(0,255,65,0.18);
  padding: 2px 8px;
  border-radius: 4px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  margin-top: 4px;
  text-shadow: 0 0 5px rgba(0,255,65,0.35);
}

.list-item .item-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

/* ─── Empty state ─────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 24px;
}
.empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  color: var(--text-muted);
  text-shadow: var(--glow-sm);
}
.empty-state p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ─── Modal ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 600px) {
  .modal-overlay { align-items: center; }
  .modal {
    border-radius: var(--r-xl) !important;
    max-width: 480px !important;
  }
}

.modal {
  background: #000;
  border: 1px solid var(--border-light);
  border-top: 1px solid rgba(0,255,65,0.45);
  box-shadow:
    0 -4px 40px rgba(0,255,65,0.12),
    0 0 80px rgba(0,0,0,0.95),
    inset 0 1px 0 rgba(0,255,65,0.08);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  width: 100%;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px 20px 32px;
  transform: translateY(30px);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.show .modal { transform: translateY(0); }

.modal::before {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--accent);
  box-shadow: var(--glow-sm);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.modal-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: var(--glow-sm);
}

/* ─── Forms ───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #030803;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  color: var(--text-secondary);   /* серый когда неактивно */
  padding: 0 14px;
  height: 46px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
  -webkit-appearance: none;
  caret-color: var(--accent);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,255,65,0.10), var(--glow-sm);
  color: var(--accent);           /* зелёный когда активно */
}
/* Автозаполнение браузера — тоже зелёное */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--accent);
  -webkit-box-shadow: 0 0 0 100px #030803 inset;
  caret-color: var(--accent);
}
.form-group textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 10px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: stretch;
  margin-top: 22px;
}
.modal-actions .btn {
  flex: 1;
  height: 48px;
  font-size: 12px;
}

/* ─── Toast ───────────────────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: max-content;
  max-width: 90vw;
}
.toast {
  background: #000;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 11px 18px;
  border-radius: var(--r-lg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow);
  animation: toast-in 0.22s ease, toast-out 0.3s ease 2.5s forwards;
  white-space: nowrap;
}
.toast.success {
  background: rgba(0,255,65,0.06);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(0,255,65,0.20);
  text-shadow: var(--glow-sm);
}
.toast.error {
  background: rgba(255,23,68,0.06);
  border-color: var(--danger);
  color: var(--danger);
  box-shadow: 0 0 14px rgba(255,23,68,0.20);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(-8px) scale(0.95); }
}

/* ─── Status dot ──────────────────────────────────────────────────────────── */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.status-dot.connected {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent), 0 0 16px rgba(0,255,65,0.35);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
.status-dot.error {
  background: var(--danger);
  box-shadow: 0 0 8px var(--danger);
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 5px var(--accent); }
  50%       { box-shadow: 0 0 14px var(--accent), 0 0 24px rgba(0,255,65,0.30); }
}

/* ─── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,255,65,0.35); }

/* ─── Note items ──────────────────────────────────────────────────────────── */
.note-item .item-title,
#servers-list .item-title,
#commands-list .item-title {
  color: var(--accent);
}

/* ─── Note preview ────────────────────────────────────────────────────────── */
.note-preview {
  font-size: 12px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 3px;
  line-height: 1.4;
}

/* ─── Badge ───────────────────────────────────────────────────────────────── */
.badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-ssh {
  background: rgba(0,255,65,0.08);
  color: var(--accent);
  border: 1px solid rgba(0,255,65,0.25);
  text-shadow: 0 0 5px rgba(0,255,65,0.35);
}

/* ─── Copy Mode Modal ────────────────────────────────────────────────────── */
.copymode-hint {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

#copymode-text {
  font-family: inherit;
  font-size: 12px;
  line-height: 1.5;
  color: var(--accent);
  background: #030803;
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 12px;
  max-height: 48vh;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-all;
  user-select: text !important;
  -webkit-user-select: text !important;
  cursor: text;
  -webkit-overflow-scrolling: touch;
  text-shadow: 0 0 4px rgba(0,255,65,0.25);
}

/* ─── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .tab-btn { padding: 7px 4px; }
  .tab-btn .tab-icon { font-size: 22px; }
  .logo-text { font-size: 14px; }
  .btn-icon { width: 40px; height: 40px; font-size: 16px; }
  .list-item { min-height: 66px; padding: 12px 10px; }
  #terminal-toolbar .toolbar-label { display: none; }
  #enter-btn { width: 60px !important; height: 46px !important; font-size: 22px !important; }
}
