.wallet-bottom-nav-wrapper {
  height: 60px;
  width: 100%;
  background: var(--purple);
  display: flex;
}

.wallet-bottom-nav {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: var(--purple);
}

.wallet-bottom-nav-item {
  flex: 1 1 0;
  display: flex;
}

.wallet-bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  height: 100%;
  padding: 0.35rem 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: var(--bs-primary);
  font-size: 0.75rem;
  line-height: 1.1;
}

.wallet-bottom-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.wallet-bottom-nav-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.wallet-bottom-nav-label {
  font-weight: 500;
}

@media (max-width: 576px) {
  .wallet-bottom-nav-link {
    font-size: 0.7rem;
    padding: 0.25rem 0;
    gap: 0.25rem;
  }

  .wallet-bottom-nav-icon {
    font-size: 1.25rem;
  }

  .wallet-bottom-nav-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }
}
