body {
    margin: 0;
    background-color: #f1f3f5;
    font-family: 'Segoe UI', Segoe UI, system-ui, -apple-system, sans-serif;
  }
  /* Desktop sidebar */
  #desktopSidebar {
    position: fixed;
    top: 0; left: 0;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    border-right: 1px solid #dee2e6;
    padding: 1rem;
    overflow-y: auto;
    z-index: 1000;
  }
  /* Content area: push to the right of sidebar */
  .content-wrapper {
    margin-left: 0;
    padding: 0;
  }
  @media (min-width: 768px) {
    .content-wrapper {
      margin-left: 250px;
      width: calc(100% - 250px);
    }
  }
  /* Card rounding */
  .card { border-radius: .75rem; }
  /* Sidebar links default/hover/active */
  #desktopSidebar .nav-link,
  #mobileSidebar .nav-link {
    color: #000 !important;
    font-weight: 600;
  }
  #desktopSidebar .nav-link:hover,
  #desktopSidebar .nav-link.active,
  #mobileSidebar .nav-link:hover,
  #mobileSidebar .nav-link.active {
    background-color: #198754 !important;
    color: #fff !important;
  }
  /* Long username truncation */
  .user-dropdown-toggle {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .user-dropdown-toggle::after {
    margin-left: 5px;;
  }
  /* Tabs styling */
  .nav-tabs .nav-link {
    color: #000;
  }
  .nav-tabs .nav-link.active {
    color: #000;
    font-weight: bold;
  }

  .avatar-32{
    width:40px;
    height:40px;
    object-fit:cover; 
    display:block;
  }