/* nav & subnav */

<!-- Subnav styles -->
  .list-group-item {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-family: 'Phetsarath OT', 'Saysettha OT', sans-serif;
    font-size: 15px;
    font-weight: bold;
  }
  .list-group-item:hover {
    background-color: #0d6efd !important; /* Bootstrap primary blue */
    color: #fff !important;
    border-left: 4px solid #ffc107;       /* Golden accent */
    transform: translateX(4px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  /* Active state styling */
  .list-group-item.active {
    background-color: #0d6efd !important;
    color: #fff !important;
    border-left: 4px solid #ffc107;
    font-weight: bold;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
  }
  
 /* Subnav styles */
.subnav_item_la {
  font-family: 'Phetsarath OT', 'Saysettha OT', sans-serif;
  font-size: 15px;
  font-weight: bold;
}

.subnav_item_la:hover {
  text-decoration: underline;
}
