/* General styles for the mobile menu */
.mobile-menu {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 10px 0px;
}

.mobile-menu-item {
  margin-bottom: 10px;
}

.mobile-menu-link-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  flex-grow: 1; /* Ensure it takes available space */
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: #333;
}

.mobile-menu-link.active {
  font-weight: bold;
  color: #444;
}

.mobile-menu-icon {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  font-size: 16px;
  color: #ccc;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle.rotate-180 {
  transform: rotate(180deg);
}

/* Submenu styles */
.mobile-menu-children {
  padding-left: 20px;
  border-left: 2px solid #f0f0f0;
  margin-top: 10px;
}
