body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 80px;
  }
  
  .dashboard-container {
    min-height: 90vh;
    display: flex;
   
  }
  
  .sidebar {
    width: 20%;
    background-color: #f8f9fa;
  }
  
  .main-content {
    width: 80%;
  }
  
  .nav-link {
    font-weight: 500;
    color: #333;
  }
  
  
  .nav-link:hover {
    background-color: #e2e6ea;
    color: #000;
  }
  
  .dashboard-section {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
 
  }
  
  
  button {
    cursor: pointer;
  }
  
  .user-profile {
    padding: 10px;
    display:flex;
    
  }
 
  
  .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #ccc;
    /* background-color: #eee; */
    align-items: left;
  }
  
  .username {
    font-size: 16px;
    font-weight: 500;
    color: #333;
  }
  .dashboard-container {
    display: flex;
    min-height: 100vh;
  }
  
  .sidebar {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 80px;
    /* border-right: 1px solid #ddd; */
    /* border-top: 1px solid black; */
    
    /* margin: 0 auto 10px auto; */
  }
  
  .sidebar-footer {
    padding-bottom: 20px;
  }
  
 
  