body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  padding: 20px;
  z-index: 1000;
  background-color: #16161f;
  color: darkorange;
  width: 100%;
  box-sizing: border-box;
}

.hamburger-menu i {
  margin-left: 10px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #16161f;
  padding: 20px;
  box-sizing: border-box;
  transition: left 0.3s ease;
  z-index: 999;
  overflow-y: auto; /* Agrega scroll vertical si el contenido del menú excede la altura */
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid darkorange;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-title {
  font-size: 18px;
  color: darkorange;
}

.close-icon {
  cursor: pointer;
  color: darkorange;
}

.menu-content {
  display: flex;
  flex-direction: column;
}

.sidebar-item {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.sidebar-item:hover {
  background-color: #000000;
}

.sidebar-item span {
  font-size: 16px;
  text-align: right;
  width: 100%;
}

.submenu {
  display: none;
  padding-left: 20px;
  background: #212139;
}

.submenu .sidebar-item {
  padding: 8px;
}

.submenu.show {
  display: block;
}

.submenu .sidebar-item:last-child {
  border-bottom: none;
}

.active {
  color: red;
}