.mr-header-mobile .navbar{
    padding: 10px 16px;
}
/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #333;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mobile-menu.active {
  display: block;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  margin: 1rem 0;
}

.menu-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.menu-list li a:hover {
  color: #f39c12;
}

/* Mobile Menu Button Styles */
.mobile-menu-toggle {
  display: none; /* Hidden by default */
  background-color: var(--mr-color-secondary-200);
  border: 1px solid #ddd;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1100;
    padding: 7px;
    height: 42px;
    margin-top: 14px;
}

.menu-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: 0.3s ease-in-out;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
  left: 0;
}

.menu-icon::before {
  top: -10px;
}

.menu-icon::after {
  top: 10px;
}

.mobile-menu-toggle.open .menu-icon {
  background-color: transparent;
}

.mobile-menu-toggle.open .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.open .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Media Query for Mobile - Show the toggle button on small screens */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block; /* Show the button on mobile screens */
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full screen for mobile menu */
    background-color: #333;
    padding: 2rem;
    box-shadow: none;
    display: none; /* Hidden by default */
  }

  .mobile-menu.active {
    display: block; /* Show menu when active */
  }
}
