/* Styles for the tab bar at the bottom of the screen */

#tabs-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  height: 80px;
  background-color: #080820;
  z-index: 1000;
  border-top: 2px solid #5050ff;
  box-shadow: 0 -2px 10px rgba(80, 80, 255, 0.3);
  margin: 0;
  padding: 0;
}

.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 0 30px 0;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.tab:active {
  transform: scale(0.95);
}

.tab.active {
  color: white;
  background-color: #101040;
}

.tab-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.tab-text {
  font-size: 12px;
  font-weight: bold;
}

/* Adjust the main content to account for the tab bar */
body {
  padding-bottom: 60px; /* Same as tabs-container height */
}

/* Adjust footer to account for tabs */
footer {
  margin-bottom: 0; /* Remove the large margin */
  padding-bottom: 80px;
}

.tab .ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Add hover effect */
.tab:hover {
  background-color: #0c0c30;
}

