
/* Main scrolling */
main {
  overflow-y: auto;
  height: 100vh;
  z-index: 1;
  position: relative;
}

/* BM Numbers - Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
  background: #0a0a0f;
  color: #fff;
  min-height: 100vh;
}


.app-container {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0a0a0f;
  overflow: hidden;
}


/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #1a1a24;
  border-bottom: 1px solid #2a2a3a;
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wallet-btn {
  background: linear-gradient(135deg, #0098FF 0%, #00297A 100%);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  opacity: 1 !important;
  pointer-events: auto !important;
}


/* Pages */
.pages {
  padding: 12px 16px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page {
  display: none;
}

.page.active {
  display: block;
  min-height: 100%;
}


/* NFT Card */
.nft-card {
  background: linear-gradient(135deg, #1a1a24 0%, #2a2a3a 100%);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  margin-bottom: 12px;
  border: 1px solid #3a3a4a;
  max-width: 100%;
  box-sizing: border-box;
}

.nft-number {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

#nftNumber {
  font-size: 24px;
  font-weight: 700;
}

.first-nft-number {
  font-size: 36px;
  font-weight: 700;
}

.nft-minutes {
  font-size: 12px;
  color: #aaa;
  margin-top: 2px;
}

.nfg-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
}


.status-dot.active {
  background: #00ff88;
}



/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}


.stat-card {
  background: #1a1a24;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  border: 1px solid #2a2a3a;
}

.stat-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
}

.stat-currency {
  font-size: 12px;
  color: #4ade80;
}


/* NFT Carousel */
.nft-carousel {
  margin-bottom: 8px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.carousel-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.carousel-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.carousel-scroll::-webkit-scrollbar {
  display: none;
}

.carousel-loading {
  color: #888;
  padding: 20px;
  text-align: center;
}

.nft-item {
  min-width: 180px;
  max-width: 200px;
  flex: 0 0 auto;
  background: #1a1a24;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  border: 1px solid #2a2a3a;
  cursor: pointer;
  opacity: 1 !important;
  pointer-events: auto !important;
  box-sizing: border-box;
  scroll-snap-align: start;
}

.nft-item:active {
  transform: scale(0.95);
}


.nft-item-number {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  white-space: nowrap;
}


.nft-item-price {
  font-size: 12px;
  color: #00ff88;
}


/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 12px;
}


.btn-primary {
  flex: 1;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.btn-secondary {
  background: #2a2a3a;
  color: #fff;
  border: 1px solid #3a3a4a;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  opacity: 1 !important;
  pointer-events: auto !important;
}


/* Call Page */
#page-call h2 {
  margin-bottom: 20px;
}

.call-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}


.phone-input {
  flex: 1;
  background: #1a1a24;
  border: 1px solid #2a2a3a;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  color: #fff;
}

.phone-input::placeholder {
  color: #666;
}

.btn-call {
  background: #00ff88;
  color: #000;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.caller-id-options {
  display: flex;
  gap: 16px;
}


.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-option input {
  accent-color: #00ff88;
}

.btn-end {
  width: 100%;
  background: #ff4444;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
}

.btn-end.hidden {
  display: none;
}


/* Messages */
.messages-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.tab {
  background: transparent;
  border: none;
  color: #888;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.tab.active {
  color: #00ff88;
  border-bottom-color: #00ff88;
}

.messages-list {
  min-height: 200px;
}


.empty-state {
  text-align: center;
  color: #666;
  padding: 40px;
}


/* Balance */
.balance-card {
  background: linear-gradient(135deg, #1a1a24 0%, #2a2a3a 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.balance-amount {
  font-size: 48px;
  font-weight: 700;
  color: #00ff88;
}

.balance-currency {
  font-size: 16px;
  color: #888;
}

.balance-actions {
  display: flex;
  gap: 12px;
}


/* Profile */
.profile-card {
  background: linear-gradient(135deg, #1a1a24 0%, #2a2a3a 100%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.profile-avatar {
  font-size: 48px;
  margin-bottom: 12px;
}

.profile-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.profile-nft {
  font-size: 24px;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 12px;
}

.profile-rarity, .profile-style {
  font-size: 14px;
  color: #888;
}

.profile-actions {
  display: flex;
  gap: 12px;
}


/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  background: #1a1a24;
  border-top: 1px solid #2a2a3a;
  padding: 12px 0;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 1000;
}

.nav-btn {
  background: transparent;
  border: none;
  color: #888;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.nav-btn.active {
  color: #00ff88;
}

.nav-icon {
  font-size: 20px;
}

.nav-label {
  font-size: 10px;
}


/* === CALL PAGE STYLES === */
.call-header {
  padding: 15px;
  background: #1a1a24;
  border-bottom: 1px solid #333;
}

.call-header h2 {
  margin: 0 0 10px 0;
  color: #00ff88;
  font-size: 20px;
}

.call-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  overflow-x: auto;
}

.call-tab {
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: #888;
  font-size: 12px;
  cursor: pointer;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.call-tab.active {
  background: linear-gradient(135deg, #0098FF 0%, #00297A 100%);
  color: white;
}

.call-tab-content {
  display: none;
  padding: 15px;
}

.call-tab-content.active {
  display: block;
}

/* Overview Tab */
.minutes-balance-card {
  background: linear-gradient(135deg, #1a1a24 0%, #252530 100%);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  margin-bottom: 15px;
  border: 1px solid #333;
}

.balance-label {
  color: #888;
  font-size: 14px;
  margin-bottom: 5px;
}

.balance-value {
  font-size: 48px;
  font-weight: bold;
  color: #00ff88;
}

.balance-detail {
  color: #666;
  font-size: 12px;
  margin-top: 5px;
}

.burn-countdown {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
}

.burn-icon {
  font-size: 30px;
  margin-right: 15px;
}

.burn-title {
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.burn-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
}

.jackpot-status-card {
  background: #1a1a24;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #333;
}

.jackpot-title {
  color: #ff9900;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.jackpot-eligible {
  font-size: 14px;
  margin-bottom: 10px;
}

.jackpot-eligible.eligible {
  color: #00ff88;
}

.jackpot-eligible.not-eligible {
  color: #ff4444;
}

.jackpot-checks .check-item {
  color: #666;
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 1px solid #252530;
}

.jackpot-checks .check-item.done {
  color: #00ff88;
}

.jackpot-checks .check-item.done::before {
  content: "✓ ";
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cta-btn {
  flex: 1;
  min-width: 120px;
  padding: 15px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #000;
}

.cta-btn.secondary {
  background: #252530;
  color: #fff;
  border: 1px solid #333;
}

/* Dialer Tab */
.dialer-balance {
  text-align: center;
  margin-bottom: 20px;
  color: #888;
}

.balance-highlight {
  color: #00ff88;
  font-weight: bold;
  font-size: 18px;
}

.call-cost-preview {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 10px 0;
}

/* My Minutes Tab */
.minutes-detail-card {
  background: #1a1a24;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
}

.minutes-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #252530;
}

.minutes-row:last-child {
  border-bottom: none;
}

.minutes-label {
  color: #888;
}

.minutes-value {
  color: #00ff88;
  font-weight: bold;
}

.minutes-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  flex: 1;
  padding: 12px;
  background: #252530;
  border: 1px solid #333;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 13px;
}

.action-btn.primary {
  background: linear-gradient(135deg, #0098FF 0%, #00297A 100%);
  border: none;
}

/* Staking Tab */
.staking-summary {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.staking-total {
  flex: 1;
  background: #1a1a24;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

.staking-total-label {
  color: #888;
  font-size: 12px;
}

.staking-total-value {
  color: #00ff88;
  font-size: 24px;
  font-weight: bold;
}

.staking-list {
  margin-bottom: 15px;
}

.staking-item {
  background: #1a1a24;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.staking-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.staking-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #252530;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staking-item-name {
  color: white;
  font-weight: bold;
}

.staking-item-rarity {
  font-size: 12px;
  color: #888;
}

.staking-item-minutes {
  color: #00ff88;
  font-weight: bold;
}

.staking-actions {
  margin-bottom: 20px;
}

.rarity-info {
  background: #1a1a24;
  border-radius: 12px;
  padding: 15px;
}

.rarity-title {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.rarity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rarity-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
  background: #252530;
  padding: 5px 10px;
  border-radius: 6px;
}

.rarity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Jackpot Tab */
.jackpot-pool-card {
  background: linear-gradient(135deg, #ff9900 0%, #ff6b35 100%);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  margin-bottom: 15px;
}

.jackpot-pool-label {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.jackpot-pool-value {
  color: white;
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
}

.jackpot-pool-dist {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
}

.jackpot-eligibility-card {
  background: #1a1a24;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
}

.eligibility-title {
  color: #ff9900;
  font-weight: bold;
  margin-bottom: 10px;
}

.eligibility-status {
  font-size: 16px;
  margin-bottom: 15px;
}

.eligibility-status.eligible {
  color: #00ff88;
}

.eligibility-status.not-eligible {
  color: #ff4444;
}

.eligibility-checks .check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #666;
  font-size: 13px;
}

.eligibility-checks .check-row.done {
  color: #00ff88;
}

.eligibility-checks .check-row.done span::before {
  content: "✓ ";
}

.eligibility-checks .check-row.missing {
  color: #ff4444;
}

.jackpot-winners {
  background: #1a1a24;
  border-radius: 12px;
  padding: 15px;
}

.winners-title {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.winners-list {
  color: #666;
  font-size: 13px;
}

/* History Tab */
.history-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  background: #252530;
  border: 1px solid #333;
  border-radius: 20px;
  color: #888;
  font-size: 12px;
  cursor: pointer;
}

.filter-btn.active {
  background: #0098FF;
  border-color: #0098FF;
  color: white;
}

.history-list {
  max-height: 400px;
  overflow-y: auto;
}

.history-item {
  background: #1a1a24;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.history-item-type {
  font-size: 12px;
  color: #888;
}

.history-item-amount {
  font-weight: bold;
}

.history-item-amount.positive {
  color: #00ff88;
}

.history-item-amount.negative {
  color: #ff4444;
}

.history-item-date {
  font-size: 11px;
  color: #666;
}

.empty-state {
  text-align: center;
  color: #666;
  padding: 30px;
  font-size: 14px;
}


/* === MARKET PAGE STYLES === */
.market-stats {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.stat-item {
  flex: 1;
  background: #1a1a24;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.stat-label {
  color: #888;
  font-size: 11px;
}

.stat-value {
  color: #00ff88;
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}

.market-orders-title {
  color: #888;
  font-size: 14px;
  margin: 15px 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}

.jackpot-rules {
  background: #1a1a24;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
}

.rules-title {
  color: #ff9900;
  font-size: 14px;
  margin-bottom: 10px;
}

.rules-list {
  color: #666;
  font-size: 12px;
  line-height: 1.8;
}

.rules-list div {
  padding: 3px 0;
}


.jackpot-pool-preview {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #333;
}

.pool-amount {
  color: #ff9900;
  font-size: 14px;
}

.pool-amount span {
  font-weight: bold;
  font-size: 18px;
}


/* Force wallet button to be clickable */
.wallet-manual-btn, #manual-wallet-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
  z-index: 9999 !important;
  position: relative !important;
}


/* Carousel wrapper */
.carousel-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}


.nft-item img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}



/* Fix for page scrolling */
.page {
  min-height: calc(100vh - 180px);
  padding-bottom: 100px;
}

.page.active {
  min-height: calc(100vh - 180px);
  padding-bottom: 100px;
}
/* Market Styles */
.market-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  background: #1a1a24;
  border-radius: 8px;
  padding: 4px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: #888;
  font-size: 13px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.tab-btn.active {
  background: #2d2d3a;
  color: #00ff88;
}

.market-section {
  padding: 8px 0;
}

.market-card {
  background: linear-gradient(135deg, #1a1a24, #2d2d3a);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #333;
}

.market-number {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}

.market-price {
  font-size: 18px;
  color: #4ade80;
  font-weight: bold;
}

.market-rarity {
  font-size: 12px;
  color: #fbbf24;
  margin-top: 4px;
}

/* Force all buttons to be clickable */
.page button,
.call-tab,
.cta-btn,
.btn-call,
.action-btn,
.filter-btn,
.tab-btn,
.nav-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
}

/* Market V2 Styles */
.market-badge {
  background: linear-gradient(135deg, #1a1a24, #2d2d3a);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  margin-bottom: 16px;
}

.market-badge span {
  display: block;
}

.market-badge span:first-child {
  font-size: 18px;
  font-weight: bold;
  color: #4ade80;
}

.market-info-box {
  background: rgba(0, 152, 255, 0.1);
  border: 1px solid rgba(0, 152, 255, 0.3);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
}

.market-pool-info {
  display: flex;
  justify-content: space-around;
  background: #1a1a24;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  border: 1px solid #333;
}

.pool-stat {
  text-align: center;
}

.pool-stat-value {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.pool-stat-label {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

.eligibility-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #1a1a24;
  border-radius: 8px;
  margin-bottom: 8px;
}

.elig-status {
  font-weight: bold;
}

.elig-status.eligible {
  color: #4ade80;
}

.elig-status.not-eligible {
  color: #ef4444;
}

/* ULTIMATE button fix */
html, body, main, .page, .page.active, .market-section, .market-card, .market-tabs {
  pointer-events: auto !important;
}

button, .tab-btn, .cta-btn, .btn-call, input {
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
}

input {
  pointer-events: auto !important;
}

/* Telegram WebView bottom navigation recovery */
html,
body,
.app-container {
  min-height: 100vh !important;
  min-height: 100dvh !important;
}

.app-container {
  padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
}

.pages {
  padding-bottom: calc(96px + env(safe-area-inset-bottom)) !important;
}

.bottom-nav {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  max-width: 480px !important;
  height: calc(64px + env(safe-area-inset-bottom)) !important;
  min-height: 64px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-around !important;
  gap: 0 !important;
  background: #1a1a24 !important;
  border-top: 1px solid #2a2a3a !important;
  padding: 6px 4px max(6px, env(safe-area-inset-bottom)) !important;
  z-index: 2147483647 !important;
  transform: translateZ(0) !important;
  -webkit-transform: translateZ(0) !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.bottom-nav .nav-btn {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: none !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  color: #888 !important;
  font-size: 18px !important;
  line-height: 1.05 !important;
  text-align: center !important;
  padding: 4px 0 !important;
  margin: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.bottom-nav .nav-btn span {
  display: block !important;
  margin-top: 3px !important;
  font-size: 10px !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.bottom-nav .nav-btn.active {
  color: #00ff88 !important;
}
