/* 🎨 หมวดสีหลัก */
.submenu hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 5px 10px;
}

.submenu strong {
  display: block;
  padding: 6px 15px;
  font-size: 13px;
  font-weight: 500;
  color: #ff0000;
  opacity: 0.9;
}

/* 💜 หมวด HR */
.has-submenu:nth-of-type(2) .submenu {
  background-color: #5A189A; /* ม่วงเข้ม */
}
.has-submenu:nth-of-type(2) .submenu li a:hover {
  background-color: #7B2CBF; /* ม่วงอ่อน */
}

/* 💚 หมวด โรงพยาบาล */
.has-submenu:nth-of-type(3) .submenu {
  background-color: #2E7D32; /* เขียวเข้ม */
}
.has-submenu:nth-of-type(3) .submenu li a:hover {
  background-color: #43A047; /* เขียวอ่อน */
}

/* 💙 หมวด งานบริหาร / เบิก / สต๊อก */
.has-submenu:nth-of-type(4) .submenu {
  background-color: #1E3A8A; /* น้ำเงินกรม */
}
.has-submenu:nth-of-type(4) .submenu li a:hover {
  background-color: #2563EB; /* น้ำเงินสด */
}

/* ⚙️ ระบบผู้ใช้งาน (ท้ายสุด) */
.has-submenu:last-of-type .submenu {
  background-color: #333;
}
.has-submenu:last-of-type .submenu li a:hover {
  background-color: #444;
}

/* 🔔 Badge แจ้งเตือน */
.badge {
  background-color: #dc3545;
  color: #fff;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 12px;
  margin-left: 6px;
  font-weight: bold;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from { background-color: #dc3545; }
  to { background-color: #ff6b6b; }
}
