/* Force Bottom Navigation Bar to be visible and fixed */
.bottom-nav {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: white !important;
  border-top: 1px solid #e5e7eb !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  padding: 8px 0 !important;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
}

.bottom-nav button {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 8px 12px !important;
  background: transparent !important;
  border: none !important;
  color: #6b7280 !important;
  font-size: 12px !important;
  transition: color 0.2s !important;
}

.bottom-nav button.active {
  color: #3b82f6 !important;
}

.bottom-nav button svg {
  width: 20px !important;
  height: 20px !important;
}

/* Ensure body has padding for bottom nav */
body {
  padding-bottom: 80px !important;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .bottom-nav {
    padding: 6px 0 !important;
  }
  
  .bottom-nav button {
    padding: 6px 8px !important;
    font-size: 11px !important;
  }
  
  .bottom-nav button svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  body {
    padding-bottom: 70px !important;
  }
}
