/* admin/admin.css */
section[data-css="sidebar-footer"] {
  display: none !important;
}

/* Add borders to list tables */
.adminjs_Table {
  border-collapse: collapse !important;
  width: 100% !important;
}

.adminjs_Table th,
.adminjs_Table thead,
.adminjs_Table td {
  border: 1px solid #ccc !important;
  padding: 8px !important;
}
.adminjs_Table th {
  background-color: #f4f4f4 !important;
}
/* .adminjs_Table td {
  border: 1px solid #ccc !important;
} */

thead tr {
  background-color: #e8f5e9 !important;
}
/* 🎯 Target only top-level list items inside the sidebar */
[data-css="sidebar-resources"] > section > ul > li > a {
  background-color: #e8f5e9; /* Light green for CRM Data */
  color: #1b5e20;
  border-left: 4px solid #4caf50;
  border-radius: 6px;
  margin: 6px 8px;
  padding: 10px 12px;
  font-weight: 600;
}

/* 🎯 Style the second main section (Admin Section) differently */
[data-css="sidebar-resources"] > section > ul > li:nth-child(2) > a {
  background-color: #e3f2fd; /* Light blue for Admin Section */
  color: #0d47a1;
  border-left: 4px solid #2196f3;
}

/* 🚫 Prevent nested dropdown links (like Leads, Client Leads) from inheriting these styles */
[data-css="sidebar-resources"] > section > ul > li > ul > li > a {
  background-color: transparent !important;
  color: #333 !important;
  border: none !important;
  margin-left: 20px;
  font-weight: 500;
}
