/* Add here all your CSS customizations */

/* Custom CSS for Larger Sidebar Control Panel Links */
#sidebar-left .nav-main li a {
  /* Increases the size of the icon and text */
  font-size: 1.1em; 
  
  /* Adds more vertical and horizontal space around the link */
  padding: 14px 20px; 
  
  /* Smooth transition for a modern feel */
  transition: background-color 0.2s ease-in-out; 
}

/* Optional: Adds a subtle highlight on hover for better user feedback */
#sidebar-left .nav-main li a:hover {
  background-color: rgba(255, 255, 255, 0.05); /* A very faint white background */
}

