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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0d1117;
  color: #c9d1d9;
  min-height: 100vh;
}

.app-main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Header ──────────────────────────────────── */
.app-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #161b22;
  border-bottom: 1px solid #30363d;
  flex-shrink: 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accent {
  color: #58a6ff;
}

/* ── Listener Bar ───────────────────────────── */
.listener-bar {
  flex-shrink: 0;
  background: #161b22;
  border-bottom: 1px solid #30363d;
  padding: 0.4rem 1rem;
}

.listener-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.field-label-inline {
  font-size: 0.75rem;
  color: #8b949e;
  white-space: nowrap;
}

.input-sm {
  width: auto;
  max-width: 180px;
  padding: 0.3rem 0.5rem;
  font-size: 0.8rem;
}

.input-ttl {
  max-width: 80px;
}

.btn-sm-primary {
  background: #1f6feb;
  color: #fff;
  border: 1px solid #388bfd;
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-sm-primary:hover {
  background: #388bfd;
}

.btn-sm-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Sessions Area (tabs + content) ──────────── */
.sessions-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* ── Tab Bar ──────────────────────────────────── */
.tab-bar {
  flex-shrink: 0;
  background: #161b22;
  border-bottom: 1px solid #30363d;
  display: flex;
  align-items: stretch;
  min-height: 32px;
}

.tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  flex: 1;
}

.tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  color: #8b949e;
  background: #0d1117;
  border-right: 1px solid #30363d;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: background 0.1s, color 0.1s;
}

.tab:hover {
  color: #c9d1d9;
  background: #161b22;
}

.tab.active {
  color: #c9d1d9;
  background: #0d1117;
  border-bottom: 2px solid #58a6ff;
  margin-bottom: -1px;
}

.tab-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #484f58;
  flex-shrink: 0;
}

.tab-status.connected {
  background: #3fb950;
}

.tab-status.waiting {
  background: #d29922;
}

.tab-status.disconnected {
  background: #f85149;
}

.tab-close {
  background: none;
  border: none;
  color: #484f58;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0 0.1rem;
  line-height: 1;
  border-radius: 2px;
  transition: color 0.1s, background 0.1s;
}

.tab-close:hover {
  color: #f85149;
  background: #f8514922;
}

/* ── Terminal Container ───────────────────────── */
.terminals-container {
  flex: 1;
  min-height: 0;
  position: relative;
}

.terminal-wrapper {
  position: absolute;
  inset: 0;
  padding: 4px;
  display: none;
}

.terminal-wrapper.active {
  display: block;
}

.terminal-wrapper .xterm {
  height: 100%;
}

.no-sessions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
}

.btn-create-center {
  background: #1f6feb;
  color: #fff;
  border: 1px solid #388bfd;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn-create-center:hover {
  background: #388bfd;
  transform: scale(1.03);
}

.btn-create-center:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-forward-center {
  background: transparent;
  color: #58a6ff;
  border: 1px solid #58a6ff;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.5rem;
}
.btn-forward-center:hover {
  background: #58a6ff15;
}

/* ── Session Generator (overlay inside terminal area) ── */
.session-generator {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  background: #0d1117;
}

.session-generator.visible {
  display: flex;
}

/* ── Generator Toolbar ──────────────────────── */
.gen-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0.75rem;
  border-bottom: 1px solid #30363d;
  background: #161b22;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.gen-settings {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* ── Advanced Toggle ────────────────────────── */
.advanced-toggle {
  border: none;
  padding: 0;
  margin: 0;
}

.advanced-summary {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8b949e;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.advanced-summary::-webkit-details-marker {
  display: none;
}

.advanced-summary::before {
  content: "\25B6";
  font-size: 0.5rem;
  transition: transform 0.15s;
}

.advanced-toggle[open] > .advanced-summary::before {
  transform: rotate(90deg);
}

.advanced-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.advanced-inline {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

/* ── Generator 2-Column Grid ────────────────── */
.gen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.gen-shells {
  padding: 0.75rem;
  overflow-y: auto;
  border-right: 1px solid #30363d;
}

.gen-payload {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8b949e;
}

/* ── Shell Picker ────────────────────────────── */
.shell-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shell-group-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #484f58;
  margin-top: 0.25rem;
}

.shell-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.shell-btn {
  background: #21262d;
  color: #c9d1d9;
  border: 1px solid #30363d;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.12s;
  white-space: nowrap;
}

.shell-btn:hover {
  background: #30363d;
  border-color: #484f58;
}

.shell-btn.active {
  background: #388bfd26;
  border-color: #58a6ff;
  color: #58a6ff;
}

/* ── Payload Display ────────────────────────── */
.payload-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.payload-code {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.5;
  flex: 1;
  min-height: 0;
  color: #e6edf3;
}

.copy-btn {
  background: #21262d;
  color: #c9d1d9;
  border: 1px solid #30363d;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: #30363d;
}

.copy-btn.copied {
  background: #238636;
  border-color: #2ea043;
  color: #fff;
}

/* ── Form Controls ──────────────────────────── */
.field-label {
  font-size: 0.75rem;
  color: #8b949e;
  margin-top: 0.25rem;
}

.input-field {
  background: #0d1117;
  border: 1px solid #30363d;
  color: #c9d1d9;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
  width: 100%;
}

.input-field:focus {
  outline: none;
  border-color: #58a6ff;
}

select.input-field {
  cursor: pointer;
}

.radio-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.radio-label {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  color: #c9d1d9;
}

.radio-label input[type="radio"] {
  accent-color: #58a6ff;
}

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  background: #1f6feb;
  color: #fff;
  border: 1px solid #388bfd;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.15s;
}

.btn-primary:hover {
  background: #388bfd;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-danger {
  background: #da3633;
  color: #fff;
  border: 1px solid #f85149;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-danger:hover {
  background: #f85149;
}

.btn-sm {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
}

/* ── Content Pages ───────────────────────────── */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.7;
  font-size: 0.9rem;
}

.page-content h2 {
  font-size: 1.5rem;
  color: #e6edf3;
  margin-bottom: 1rem;
}

.page-content h3 {
  font-size: 1rem;
  color: #c9d1d9;
  margin: 1.5rem 0 0.5rem;
}

.page-content p {
  color: #8b949e;
  margin-bottom: 0.75rem;
}

.page-content ul {
  color: #8b949e;
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
}

.page-content ul li {
  margin-bottom: 0.35rem;
}

.page-content a {
  color: #58a6ff;
  text-decoration: none;
}

.page-content a.btn-github,
.page-content a.btn-primary {
  color: #fff;
}

.page-content a:hover {
  text-decoration: underline;
}

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: #0b0e13;
  border-top: 1px solid #30363d;
  padding: 1.5rem 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #8b949e;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #c9d1d9;
}

.footer-copy {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: #484f58;
}

/* ── Header Account Menu ────────────────────── */
.header-spacer {
  flex: 1;
}

.header-link {
  color: #8b949e;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.header-link:hover {
  color: #c9d1d9;
  background: #21262d;
}

.account-menu {
  position: relative;
}

.account-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid #30363d;
  color: #c9d1d9;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.15s;
}

.account-toggle:hover {
  background: #21262d;
}

.account-email {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plan-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
}

.plan-free {
  background: #30363d;
  color: #8b949e;
}

.plan-pro {
  background: #388bfd26;
  color: #58a6ff;
}

.plan-api {
  background: #3fb95026;
  color: #3fb950;
}

.account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 220px;
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 100;
  overflow: hidden;
}

.account-dropdown.open {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: #c9d1d9;
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.1s;
}

.dropdown-item:hover {
  background: #21262d;
}

.dropdown-danger {
  color: #f85149;
}

.dropdown-danger:hover {
  background: #f8514915;
}

.dropdown-section {
  padding: 0.5rem 0.75rem;
  border-top: 1px solid #30363d;
}

.dropdown-label {
  font-size: 0.7rem;
  color: #8b949e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.api-key-display {
  display: block;
  margin: 0.3rem 0;
  font-size: 0.7rem;
  color: #e6edf3;
  word-break: break-all;
}

.dropdown-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

/* ── Ad Container ───────────────────────────── */
.ad-container {
  flex-shrink: 0;
  border-top: 1px solid #30363d;
}

.ad-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: #161b22;
}

.ad-label {
  font-size: 0.7rem;
  color: #484f58;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Auth Pages ─────────────────────────────── */
.auth-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.auth-card {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 1.25rem;
}

.auth-card-single {
  max-width: 400px;
  margin: 1rem auto;
}

.auth-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.auth-card p {
  color: #8b949e;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.auth-status {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #8b949e;
}

.auth-status.success {
  color: #3fb950;
}

.auth-status.error {
  color: #f85149;
}

.auth-link {
  font-size: 0.8rem;
  margin-top: 0.75rem;
  color: #8b949e;
}

.auth-link a {
  color: #58a6ff;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}

/* ── Auth Divider ──────────────────────────── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  color: #484f58;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #30363d;
}

/* ── GitHub Button ─────────────────────────── */
.btn-github {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #21262d;
  color: #fff;
  border: 1px solid #30363d;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.btn-github:hover {
  background: #30363d;
  border-color: #484f58;
}

/* ── Magic Link Toggle ─────────────────────── */
.auth-magic-section {
  margin-top: 1rem;
  text-align: center;
}

.auth-magic-toggle {
  background: none;
  border: none;
  color: #58a6ff;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}

.auth-magic-toggle:hover {
  text-decoration: underline;
}

.btn-magic {
  background: #21262d;
  border-color: #30363d;
  color: #c9d1d9;
}

.btn-magic:hover {
  background: #30363d;
}

/* ── Account Details ───────────────────────── */
.account-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #21262d;
}

.account-detail:last-of-type {
  border-bottom: none;
}

.account-value {
  color: #e6edf3;
  font-size: 0.85rem;
}

/* ── Pricing Page ───────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.pricing-card {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.pricing-card-featured {
  border-color: #58a6ff;
  box-shadow: 0 0 0 1px #58a6ff40;
}

.pricing-tier {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: #e6edf3;
  margin-bottom: 0.25rem;
}

.pricing-interval {
  font-size: 0.85rem;
  font-weight: 400;
  color: #8b949e;
}

.pricing-alt {
  font-size: 0.75rem;
  color: #8b949e;
  margin-bottom: 0.75rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: #c9d1d9;
  border-bottom: 1px solid #21262d;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  margin-top: 0.5rem;
}

.pricing-yearly {
  background: #21262d;
  border-color: #30363d;
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

.pricing-yearly:hover {
  background: #30363d;
}

.pricing-current {
  pointer-events: none;
}

.billing-status-info {
  text-align: center;
  margin: 0.6rem 0 0.25rem;
  font-size: 0.8rem;
  color: #8b949e;
}

.billing-label {
  margin-right: 0.3rem;
}

.billing-date {
  color: #c9d1d9;
  font-weight: 500;
}

.billing-date.billing-warn {
  color: #d29922;
}

.btn-outline {
  background: transparent;
  color: #58a6ff;
  border: 1px solid #58a6ff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.15s;
}

.btn-outline:hover {
  background: #58a6ff15;
}

/* ── FAQ Section ────────────────────────────── */
.faq-section {
  margin-top: 1rem;
}

.faq-item {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.faq-item summary {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e6edf3;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "\25B6";
  font-size: 0.55rem;
  color: #8b949e;
  transition: transform 0.15s;
  flex-shrink: 0;
}

.faq-item[open] > summary::before {
  transform: rotate(90deg);
}

.faq-item p {
  padding: 0 1rem 0.75rem;
  font-size: 0.85rem;
  color: #8b949e;
  line-height: 1.6;
}

/* ── Bridge Setup Overlay ────────────────────── */
.bridge-setup {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  background: #0d1117;
}

.bridge-setup.visible {
  display: flex;
}

.bridge-setup-inner {
  max-width: 620px;
  width: 100%;
  padding: 1.5rem;
}

.bridge-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.bridge-desc {
  font-size: 0.8rem;
  color: #8b949e;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.bridge-desc code {
  background: #21262d;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-size: 0.75rem;
  color: #e6edf3;
}

.bridge-commands {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.bridge-cmd-block .payload-header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bridge-label {
  font-size: 0.75rem;
  color: #8b949e;
  font-weight: 500;
  margin-bottom: 0.2rem;
  display: block;
}

.bridge-code {
  flex: 1;
  font-size: 0.72rem;
  padding: 0.5rem;
  min-height: 0;
  max-height: 3.5em;
}

.bridge-downloads {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.bridge-dl-link {
  font-size: 0.75rem;
  color: #58a6ff;
  text-decoration: none;
  padding: 0.15rem 0.4rem;
  border: 1px solid #30363d;
  border-radius: 3px;
  transition: background 0.15s, border-color 0.15s;
}

.bridge-dl-link:hover {
  background: #58a6ff15;
  border-color: #58a6ff;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .gen-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .gen-shells {
    border-right: none;
    border-bottom: 1px solid #30363d;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .auth-cards {
    grid-template-columns: 1fr;
  }

  .account-email {
    max-width: 100px;
  }
}

/* ── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0d1117;
}

::-webkit-scrollbar-thumb {
  background: #30363d;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #484f58;
}

/* Hide scrollbar on tab bar */
.tabs::-webkit-scrollbar {
  height: 0;
}
