/* Simple Sticky Navbar Styles */
#mainNavbar {
  transition: all 0.3s ease;
}

#mainNavbar.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1030;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

body {
  transition: padding-top 0.3s ease;
}
