/* ===== Sidebar ===== */
.side-nav {
    width: 220px;
    min-width: 220px;
    height: 200vh;
    position: sticky;
    top: 0;
  
    background: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  
    padding: 20px 16px;
    box-sizing: border-box;
  }
  
  /* ===== Menu ===== */
  .side-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  /* ===== Item ===== */
  .side-nav-item {
    display: block;
  
    padding: 10px 12px;
    border-radius: 8px;
  
    font-size: 14px;
    line-height: 1.4;
  
    color: #000000;
    text-decoration: none;
  
    transition: background 0.15s ease, color 0.15s ease;
  }
  
  /* Hover */
  .side-nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #000000;
  }
  
  /* Active */
  .side-nav-item.active {
    background: rgba(20, 40, 188, 0.747);
    color: #000000;
    font-weight: 500;
  }

  .app-layout {
    display: flex;
    min-height: 100vh;
  }
  