#sidebar {
  width: 200px;
  transition: width 0.3s ease;
  overflow: hidden;
}

#sidebar.collapsed {
  width: 50px;
}

#sidebar .nav-link span {
  transition: opacity 0.3s ease;
  opacity: 1;
  white-space: nowrap;
}

#sidebar.collapsed .nav-link span {
  opacity: 0;
  width: 0;
  display: inline-block;
  overflow: hidden;
}

/* Mobile bottom navbar */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    padding: 0.5rem 0;
    /*backdrop-filter: blur(5px); !* Optional: blurred background *!*/
    z-index: 1050; /* High enough to stay on top */
    border-top: 0 !important;
  }

  body {
    padding-bottom: 60px; /* Reserve space for sticky nav */
  }

  .mobile-bottom-nav .nav-item .nav-link {
    font-size: 1.5rem;
    text-align: center;
    color: #000;
  }

  .mobile-bottom-nav .nav-emoji {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-left: 5px;
    margin-right: 5px;

    font-size: 2rem!important;
  }
}


.sidebar-item {
  color: black !important;
  padding: 10px!important;
}

.sidebar-item:hover {
  background-color: #ddd!important;
}

.sidebar-item-active {
  background-color: #ddd!important;
}