.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e5e5;
  padding-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

body[data-hotwire-native] .bottom-nav {
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #6c757d !important;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.bottom-nav .nav-item:hover {
  color: #007bff;
}

.bottom-nav .nav-item.active {
  color: #ff6b6b !important;
}

.bottom-nav .nav-item i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.bottom-nav .nav-item span {
  font-size: 0.75rem;
  font-weight: 500;
}
