
.n-container {
    display: flex;
  }
  .sidebar {
    width: 250px;
    /* background-color: #f5f5f5; */
    margin-top: 10rem;
    border-right: 2px solid #f5f5f5;
    height:70vh; /* Chiều cao cố định bằng 100% màn hình */
    overflow-y: auto; /* Kích hoạt cuộn dọc nếu nội dung quá nhiều */
    scrollbar-width: thin; /* Tạo scrollbar nhỏ gọn */
    scrollbar-color: #bbb #FFEBEB; /* Màu của scrollbar */
  }
  
  /* Tùy chỉnh thanh cuộn trên Chrome */
  .sidebar::-webkit-scrollbar {
    width: 6px;
  }
  
  .sidebar::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 3px;
  }
  
  .sidebar::-webkit-scrollbar-track {
    background: #f5f5f5;
  }
  
  
  .menu {
    list-style: none;
    
  }
  
  .menu-item {
    display: block;
    padding: 10px;
    background: #fff;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    margin-bottom: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .menu-item:hover,
  .menu-item.active {
    background: #FFEBEB;
      color: #EE0033;
  }
  
  /* .has-submenu>.menu-item {
    background: #FFEBEB;
      color: #EE0033;
  } */
  .has-submenu .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  /* Khi submenu mở, xoay mũi tên lên */
  .has-submenu.open .arrow {
    transform: rotate(180deg);
  }
  .submenu {
    list-style: none;
    padding-left: 15px;
    display: none;
    transition: all 0.3s ease;
  }
  
  .submenu li a {
    display: block;
    padding: 8px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 5px;
  }
  
  .submenu li a:hover {
    background: #FFEBEB;
      color: #EE0033;
  }
  
  .content {
    flex: 1;
    margin-top: 10rem;
  
  }
  
  .content-box {
    display: none;
    font-size: 18px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Hiển thị nội dung mặc định */
  .content-box.active {
    display: block;
  }