/* Akasha Bottom Navigation Bar Styles */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: #ffffff;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 16px;
  position: relative;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

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

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

.nav-button:hover {
  color: #ffc107;
}

.nav-button.active {
  color: #ffc107;
  font-weight: bold;
}

.nav-button.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: #ffc107;
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 480px) {
  .bottom-nav {
    padding: 8px 0;
  }
  
  .nav-button {
    padding: 6px 8px;
  }
  
  .nav-icon {
    font-size: 18px;
  }
  
  .nav-label {
    font-size: 10px;
  }
}
