/* Tailwind CSS will be used, but here's custom styling for adjustments */


body {
  font-family: 'Poppins', sans-serif;
  

}
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;
  }
 
  
  .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;
  }
  
 
  
  .btn-action {
    display: inline-flex;
    align-items: center;
    padding: 5px;
    margin-right: 10px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    background: none; /* No background */
    color: inherit;
  }

  .btn-action i {
    font-size: 22px; /* Icon size */
    color: #4b5563; /* Default icon color */
  }

  .btn-action:hover {
    opacity: 0.8; /* Button hover effect */
  }

  .btn-action:focus {
    outline: none; /* Remove outline when focused */
  }

  /* Add color-specific styles for icons */
  .btn-action .fa-check-circle {
    color: green; /* Accept icon color */
  }

  .btn-action .fa-times-circle {
    color: red; /* Reject icon color */
  }

  .btn-action .fa-question-circle {
    color: orange; /* Query icon color */
  }
