/* Bottom Tab Navigation Styles (legacy snrb- and new mr- aliases) */
.snrb-bottom-tabs, .mr-bottom-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.snrb-tab-item, .mr-tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
}

.snrb-tab-item:hover, .mr-tab-item:hover {
  background: rgba(0, 124, 186, 0.1);
}

.snrb-tab-active, .mr-tab-active {
  color: #007cba;
}

.snrb-tab-icon, .mr-tab-icon {
  font-size: 24px;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

.snrb-tab-active .snrb-tab-icon, .mr-tab-active .mr-tab-icon {
  transform: scale(1.1);
}

.snrb-tab-label, .mr-tab-label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
}

.snrb-tab-active .snrb-tab-label, .mr-tab-active .mr-tab-label {
  color: #007cba;
  font-weight: 600;
}

/* Add some bottom padding so content isn't hidden behind tabs */
.snrb-app, .mr-app {
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .snrb-bottom-tabs, .mr-bottom-tabs {
    padding: 6px 0;
  }
  
  .snrb-tab-item, .mr-tab-item {
    min-height: 50px;
    padding: 6px 2px;
  }
  
  .snrb-tab-icon, .mr-tab-icon {
    font-size: 20px;
  }
  
  .snrb-tab-label, .mr-tab-label {
    font-size: 10px;
  }
  
  .snrb-app, .mr-app {
    padding-bottom: 70px;
  }
}

/* Navigation button styles */
.snrb-nav-btn, .mr-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.snrb-nav-btn:hover, .mr-nav-btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.snrb-nav-btn:active, .mr-nav-btn:active {
  transform: translateY(0);
}
