/* ════════════════════════════════════════════════════════════
   LIGHT THEME OVERRIDE — chuyển toàn bộ giao diện web (không phải
   admin) từ nền tối sang nền sáng. Đè lên CSS gốc bằng !important,
   không đụng logic PHP, không đổi cấu trúc HTML.
   ════════════════════════════════════════════════════════════ */
html, body {
  background: #f5f6fa !important;
  color: #1e1e2d !important;
}
.layout-wrapper, .content, .content-wrapper, .auth, .form-wrapper,
.container, .container-fluid {
  background: transparent !important;
}
.card, .form-control, .modal-content, .dropdown-menu {
  background: #ffffff !important;
  color: #1e1e2d !important;
  border-color: #e4e6ef !important;
}
.menu, .header {
  background: #ffffff !important;
  color: #1e1e2d !important;
  border-bottom: 1px solid #e4e6ef;
}
.menu-body ul li > a {
  color: #3a3a4a !important;
}
.menu-body ul li > a:hover,
.menu-body ul li > a.active {
  color: #546de5 !important;
  background: #f0f1fb !important;
}
.text-white { color: #1e1e2d !important; }
.table { color: #1e1e2d !important; }
.table thead th { background: #f8f9fc !important; color: #6b7280 !important; }
a { color: #546de5; }
::-webkit-scrollbar-thumb { background-color: #d1d3e6 !important; }
