/* BangHub - Dark Theme */

:root {
  --kw-blue: #00a8e8;
  --kw-green: #00d4aa;
  --kw-red: #ff4444;
  --kw-yellow: #ffaa00;
  --kw-bg: #1a1a1a;
  --kw-card: #222;
  --kw-border: #333;
  --kw-text: #fff;
  --kw-muted: #888;
  --kw-dim: #666;
}

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

html, body {
  height: 100%;
  background: var(--kw-bg);
  color: var(--kw-text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

/* ---- Header ---- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border-bottom: 2px solid var(--kw-blue);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.logo {
  color: var(--kw-blue);
  font-size: 18px;
  font-weight: bold;
}

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

/* ---- Status Badges ---- */
.badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid;
}
.badge.ok { background: #00d4aa22; color: var(--kw-green); border-color: var(--kw-green); }
.badge.err { background: #ff444422; color: var(--kw-red); border-color: var(--kw-red); }
.badge.wait { background: #ffaa0022; color: var(--kw-yellow); border-color: var(--kw-yellow); }
.badge.off { background: #33333366; color: var(--kw-dim); border-color: var(--kw-border); }

/* ---- Tab Navigation ---- */
.tab-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  border-top: 1px solid var(--kw-border);
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--kw-muted);
  padding: 10px 0 8px;
  font-size: 10px;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.tab-btn .tab-icon { font-size: 20px; }
.tab-btn.active { color: var(--kw-blue); }
.tab-btn:active { background: #ffffff10; }

/* ---- Tab Content ---- */
.tab-content {
  padding: 60px 16px 70px;
  min-height: 100vh;
  display: none;
}
.tab-content.active { display: block; }

/* ---- Fullscreen iframe Tab (e.g. Ski Nav) ---- */
.tab-content.tab-fullscreen {
  padding: 0;
  min-height: 0;
}
.tab-content.tab-fullscreen.active {
  display: flex;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: calc(62px + env(safe-area-inset-bottom, 0px));
}
.tab-content.tab-fullscreen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #1a1a1a;
}

/* ---- Cards ---- */
.card {
  background: var(--kw-card);
  border: 1px solid var(--kw-border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.card-label {
  color: var(--kw-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

/* ---- Buttons ---- */
.btn {
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn:active { opacity: 0.8; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-primary { background: var(--kw-blue); color: #fff; }
.btn-success { background: var(--kw-green); color: #111; }
.btn-danger { background: var(--kw-red); color: #fff; }
.btn-block { width: 100%; }

/* ---- Moderator Tab ---- */
.ptt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.ptt-btn {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--kw-blue);
  background: #00a8e815;
  color: var(--kw-blue);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  -webkit-user-select: none;
  user-select: none;
}
.ptt-btn .ptt-icon { font-size: 36px; }
.ptt-btn:active,
.ptt-btn.active {
  background: var(--kw-blue);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 40px #00a8e840;
}
.ptt-btn.listening {
  border-color: var(--kw-green);
  background: #00d4aa20;
  color: var(--kw-green);
  animation: pulse-ring 1.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 #00d4aa40; }
  50% { box-shadow: 0 0 0 20px #00d4aa00; }
}

.transcript-box {
  background: #111;
  border: 1px solid var(--kw-border);
  border-radius: 8px;
  padding: 12px;
  min-height: 60px;
  max-height: 120px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.5;
  color: var(--kw-muted);
  width: 100%;
}
.transcript-box.user { border-left: 3px solid var(--kw-blue); }
.transcript-box.assistant { border-left: 3px solid var(--kw-green); color: var(--kw-green); }

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.volume-control input[type="range"] {
  flex: 1;
  accent-color: var(--kw-blue);
}

/* ---- Watch Tab ---- */
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric {
  text-align: center;
  padding: 20px 12px;
}
.metric-value {
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
}
.metric-value.hr { color: var(--kw-red); }
.metric-value.steps { color: var(--kw-green); }
.metric-value.battery { color: var(--kw-blue); }
.metric-value.temp { color: var(--kw-yellow); }
.metric-unit {
  color: var(--kw-dim);
  font-size: 13px;
  margin-top: 4px;
}

.heart-icon {
  font-size: 24px;
  animation: pulse 1s ease-in-out infinite;
  display: inline-block;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hr-chart {
  width: 100%;
  height: 50px;
  margin-top: 8px;
}

.accel-viz {
  width: 120px;
  height: 120px;
  position: relative;
  border: 2px solid var(--kw-border);
  border-radius: 50%;
  margin: 0 auto;
}
.accel-dot {
  width: 12px;
  height: 12px;
  background: var(--kw-blue);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
  box-shadow: 0 0 10px #00a8e860;
}
.accel-crosshair {
  position: absolute;
  background: var(--kw-border);
}
.accel-h { width: 100%; height: 1px; top: 50%; }
.accel-v { height: 100%; width: 1px; left: 50%; }

/* ---- Sync Tab ---- */
.sync-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.sync-meta {
  color: var(--kw-dim);
  font-size: 12px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #2a2a2a;
}
.app-item:last-child { border-bottom: none; }

.app-status-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.app-status-icon.current { background: var(--kw-green); }
.app-status-icon.update { background: var(--kw-yellow); }
.app-status-icon.missing { background: var(--kw-red); }
.app-status-icon.removed { background: var(--kw-dim); }

.app-info { flex: 1; min-width: 0; }
.app-name { font-size: 14px; font-weight: 600; }
.app-version { color: var(--kw-muted); font-size: 12px; }

.app-progress {
  width: 100%;
  height: 4px;
  background: var(--kw-border);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.app-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--kw-blue), var(--kw-green));
  border-radius: 2px;
  transition: width 0.3s;
  width: 0%;
}

.storage-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.storage-track {
  flex: 1;
  height: 8px;
  background: var(--kw-border);
  border-radius: 4px;
  overflow: hidden;
}
.storage-fill {
  height: 100%;
  background: var(--kw-blue);
  border-radius: 4px;
}
.storage-label {
  color: var(--kw-muted);
  font-size: 11px;
  white-space: nowrap;
}

/* ---- Settings Tab ---- */
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #2a2a2a;
}
.setting-row:last-child { border-bottom: none; }
.setting-label { font-size: 14px; }
.setting-hint { color: var(--kw-muted); font-size: 12px; margin-top: 2px; }

.toggle {
  width: 44px;
  height: 24px;
  background: var(--kw-border);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle.on { background: var(--kw-blue); }
.toggle::after {
  content: '';
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
}
.toggle.on::after { transform: translateX(20px); }

select, input[type="text"] {
  background: #111;
  color: var(--kw-text);
  border: 1px solid var(--kw-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
}

/* ---- Store Tab ---- */
.store-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.store-filter-btn {
  background: var(--kw-border);
  border: none;
  color: var(--kw-muted);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.store-filter-btn.active {
  background: var(--kw-blue);
  color: #fff;
}
.store-filter-btn:active { opacity: 0.8; }

.store-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-card {
  background: #1a1a1a;
  border: 1px solid var(--kw-border);
  border-radius: 10px;
  padding: 14px;
}
.store-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.store-card-icon {
  font-size: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00a8e815;
  border-radius: 10px;
  flex-shrink: 0;
}
.store-card-title { flex: 1; min-width: 0; }
.store-card-name {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.store-card-meta {
  color: var(--kw-muted);
  font-size: 11px;
  margin-top: 2px;
}
.store-card-desc {
  color: var(--kw-dim);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.store-tag {
  background: #333;
  color: var(--kw-muted);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
}
.store-card-actions {
  display: flex;
  justify-content: flex-end;
}

.store-install-btn {
  background: var(--kw-blue);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 110px;
  text-align: center;
}
.store-install-btn:active { opacity: 0.8; }
.store-install-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.store-install-btn.installed {
  background: var(--kw-green);
  color: #111;
}
.store-install-btn.update {
  background: var(--kw-yellow);
  color: #111;
}

.store-footer {
  text-align: center;
  color: var(--kw-dim);
  font-size: 11px;
  padding: 12px 0 4px;
}
.store-empty {
  text-align: center;
  color: var(--kw-muted);
  padding: 20px;
}

/* ---- Templates ---- */
.templates-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.template-card {
  background: #1a1a1a;
  border: 1px solid var(--kw-border);
  border-radius: 10px;
  padding: 14px;
}
.template-header {
  margin-bottom: 6px;
}
.template-level {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.template-level.level-beginner { background: #00d4aa30; color: var(--kw-green); }
.template-level.level-easy { background: #00a8e830; color: var(--kw-blue); }
.template-level.level-medium { background: #ffaa0030; color: var(--kw-yellow); }
.template-level.level-advanced { background: #ff444430; color: var(--kw-red); }

.template-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.template-desc {
  color: var(--kw-dim);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.template-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid var(--kw-border);
  background: var(--kw-card);
  color: var(--kw-text);
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn-sm:active { opacity: 0.8; }
.btn-sm.btn-primary {
  background: var(--kw-blue);
  color: #fff;
  border-color: var(--kw-blue);
}

/* ---- Template Viewer Overlay ---- */
.template-viewer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 16px;
}
.template-viewer.visible {
  display: flex;
}
.template-viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--kw-border);
}
.template-viewer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--kw-blue);
}
.template-code {
  flex: 1;
  overflow: auto;
  background: #111;
  border: 1px solid var(--kw-border);
  border-radius: 8px;
  padding: 12px;
  font-family: 'Cascadia Code', 'Fira Code', monospace;
  font-size: 11px;
  line-height: 1.5;
  color: var(--kw-green);
  white-space: pre;
  tab-size: 2;
}
.template-viewer-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding-top: 12px;
  border-top: 1px solid var(--kw-border);
  margin-top: 12px;
}

/* ---- Onboarding Overlay ---- */
.onboarding-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.onboarding-overlay.visible {
  display: flex;
}
.onboarding-card {
  background: var(--kw-card);
  border: 1px solid var(--kw-border);
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 360px;
  width: 100%;
  text-align: center;
}
.onboarding-step h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--kw-blue);
}
.onboarding-step p {
  color: var(--kw-text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.onboarding-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.onboarding-hint {
  color: var(--kw-muted);
  font-size: 12px;
  margin-bottom: 16px;
}
.browser-check-ok {
  color: var(--kw-green);
  font-size: 14px;
  padding: 12px;
}
.browser-check-err {
  color: var(--kw-red);
  font-size: 14px;
  padding: 12px;
  line-height: 1.6;
}

/* ---- Spritz Integration ---- */
.spritz-input {
  width: 100%;
  background: #111;
  color: var(--kw-text);
  border: 1px solid var(--kw-border);
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.5;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s;
}
.spritz-input:focus {
  outline: none;
  border-color: var(--kw-blue);
  box-shadow: 0 0 0 2px #00a8e820;
}
.spritz-input::placeholder { color: var(--kw-dim); }

.spritz-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  color: var(--kw-dim);
}
.spritz-time { color: var(--kw-blue); }

.spritz-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.spritz-quick-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.spritz-quick-btn {
  background: #1a1a1a;
  border: 1px solid var(--kw-border);
  color: var(--kw-muted);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.spritz-quick-btn:active {
  background: var(--kw-blue);
  color: #fff;
  border-color: var(--kw-blue);
}

.spritz-response-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #2a2a2a;
}

.btn-spritz {
  background: linear-gradient(135deg, var(--kw-yellow), #ff8800);
  color: #111;
  border-color: var(--kw-yellow);
  font-weight: 700;
}

.auto-spritz-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--kw-muted);
  cursor: pointer;
}
.auto-spritz-label input[type="checkbox"] {
  accent-color: var(--kw-yellow);
  width: 16px;
  height: 16px;
}

/* ---- Stats Tab ---- */
.stats-total-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.stat-pill {
  flex: 1;
  min-width: 56px;
  background: #111;
  border: 1px solid var(--kw-border);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.stat-pill-val {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.stat-pill-lbl {
  display: block;
  font-size: 9px;
  color: var(--kw-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.stats-card {
  background: #1e1e1e;
  border: 1px solid var(--kw-border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}
.stats-card-hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.stats-card-date {
  font-size: 15px;
  font-weight: 700;
  color: var(--kw-blue);
}
.stats-card-dur {
  font-size: 13px;
  color: var(--kw-muted);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}
.stat-cell {
  background: #111;
  border-radius: 6px;
  padding: 6px 8px;
  text-align: center;
}
.stat-cell-val {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.stat-cell-lbl {
  display: block;
  font-size: 9px;
  color: var(--kw-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
}
.stats-spark-wrap {
  margin-top: 6px;
}
.stats-spark-lbl {
  font-size: 10px;
  color: var(--kw-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stats-spark {
  width: 100%;
  height: 36px;
  display: block;
  margin-top: 4px;
}
.stats-loading, .stats-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--kw-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mb-12 { margin-bottom: 12px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }

/* ---- Store: Watch Version Badge ---- */
.watch-ver-badge {
  display: inline-block;
  background: var(--kw-blue);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.watch-ver-badge.outdated {
  background: var(--kw-yellow);
}

/* ---- Store: Changelog Delta ---- */
.store-delta {
  margin: 8px 0 4px;
  padding: 6px 8px;
  background: rgba(0,168,232,0.08);
  border-left: 2px solid var(--kw-blue);
  border-radius: 0 4px 4px 0;
  font-size: 11px;
}
.store-delta-hd {
  font-weight: 700;
  color: var(--kw-blue);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.store-delta-item {
  color: var(--kw-muted);
  margin: 3px 0;
  line-height: 1.4;
}
.store-delta-item::before {
  content: '→ ';
  color: var(--kw-blue);
}

/* ---- Store: Version Selector ---- */
.store-card-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.store-version-select {
  flex: 1;
  min-width: 0;
  padding: 6px 8px;
  background: #1a1a1a;
  color: #eee;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 12px;
}
.store-install-btn.downgrade {
  background: #ff8c00;
  color: #000;
}

/* ---- Install Queue UI ---- */
.install-queue {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.queue-title {
  font-size: 14px;
  font-weight: 600;
  color: #00a8e8;
}

.queue-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.queue-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #2a2a2a;
  font-size: 13px;
}

.queue-item--installing {
  background: #1a3a4a;
  border: 1px solid #00a8e8;
}

.queue-item--retry {
  background: #3a2a1a;
  border: 1px solid #ff9900;
}

.queue-icon {
  font-size: 14px;
}

.queue-app {
  flex: 1;
  color: #fff;
  font-weight: 500;
}

.queue-status {
  color: #888;
  font-size: 12px;
}

.store-install-btn.queued {
  background: #555;
  color: #ccc;
}

.store-install-btn.retry {
  background: #ff6600;
  color: #fff;
}

.store-install-btn.installing {
  background: #0077aa;
  color: #fff;
}
