/* Bottom mobile toolbar - visible only on small screens */
.planovo-mobile-nav {
  display: none;
}

@media (max-width: 991px) {
  .planovo-mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 0 6px;
    z-index: 10000;
  }

  .planovo-mobile-nav .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111827;
    font-size: 11px;
    gap: 4px;
  }

  .planovo-mobile-nav .mobile-nav-item i {
    font-size: 18px;
    color: #2b38e9;
  }

  /* Reserve space at bottom so content isn't hidden behind the toolbar */
  #mainwrapper {
    padding-bottom: 70px !important;
  }
}
