/* FA5 compat: map .fas/.far/.fab to the FA4 web font already loaded */
.fas,
.far,
.fab {
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.test {
  color: #00A700;
}

.box-datagrid-container {
  overflow-x: auto;
}

:root {
  --bs-body-bg: #f3f4f6;
  --bs-body-color: #1f2937;
  --bs-primary: #17a2b8;
  --bs-primary-rgb: 13, 110, 253;
  --bs-dark: #111827;
  --bs-border-color: #d0d7de;
  --bs-border-radius: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.bg-body-tertiary {
  background: var(--bs-body-bg) !important;
}

.bg-dark {
  background: var(--bs-dark) !important;
}

.border,
.border-end,
.border-bottom,
.card,
.alert,
.dropdown-menu {
  border-color: var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-end {
  border-right: 1px solid var(--bs-border-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--bs-border-color) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.h3 {
  font-size: 1.75rem;
  line-height: 1.2;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-4 { padding: 1.5rem !important; }

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: 1140px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.row > [class*="col-"] {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.col-12,
.col-md-8,
.col-lg-3,
.col-lg-5,
.col-lg-9,
.col-xl-2,
.col-xl-10 {
  width: 100%;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 4rem;
}

.navbar-dark,
.navbar-dark a,
.navbar-dark .nav-link {
  color: #fff;
}

.navbar-brand {
  font-size: 1.25rem;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.nav {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.navbar-toggler,
.btn-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.btn-close {
  border-color: var(--bs-border-color);
  color: #6b7280;
}

.navbar-toggler-icon,
.btn-close::before {
  display: inline-block;
  width: 1rem;
  height: 1rem;
}

.navbar-toggler-icon {
  background:
    linear-gradient(#fff, #fff) 50% 20% / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 50% 50% / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 50% 80% / 100% 2px no-repeat;
}

.btn-close::before {
  content: "x";
  font-size: 1rem;
  line-height: 1;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 1050;
  min-width: 12rem;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.12);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu-end {
  left: auto;
  right: 0;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #1f2937;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: #f3f4f6;
  text-decoration: none;
}

.offcanvas,
.offcanvas-lg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(20rem, 85vw);
  max-width: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
  z-index: 1045;
  overflow-y: auto;
}

.offcanvas.show,
.offcanvas-lg.show {
  transform: translateX(0);
}

.offcanvas-header,
.offcanvas-body {
  padding: 1rem;
}

.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  z-index: 1040;
}

.card {
  background: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.card-body {
  padding: 1rem;
}

.alert {
  padding: 1rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--bs-border-radius);
}

.alert-success {
  background: #e8f5ee;
  color: #0f5132;
}

.alert-warning {
  background: #fff4db;
  color: #7c5500;
}

.alert-danger {
  background: #fde8e8;
  color: #842029;
}

.alert-primary {
  background: #e8f0fe;
  color: #0a58ca;
}

/* Override Bootstrap 3: .nav-pills > li { float: left } breaks full-width items */
.admin-sidebar-nav > li,
.admin-sidebar-nav .nav > li {
  float: none;
  width: 100%;
}

.admin-sidebar-nav > li > a,
.admin-sidebar-nav .admin-nav-group > a,
.admin-sidebar-nav .nav > li > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: #c2c7d0;
  border-radius: 0;
  white-space: nowrap;
}

.admin-sidebar-nav > li > a:hover,
.admin-sidebar-nav .admin-nav-group > a:hover,
.admin-sidebar-nav .nav > li > a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.admin-sidebar-nav li.active > a,
.admin-sidebar-nav li.menu-open > a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.admin-sidebar-nav .nav-link p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
}

.admin-sidebar-nav .right {
  margin-left: auto;
  transition: transform 0.2s ease;
}

.admin-sidebar-nav .menu-open > .nav-link .right {
  transform: rotate(-90deg);
}

.admin-sidebar-nav .nav-treeview {
  display: none;
  padding-left: 0.75rem;
}

.admin-sidebar-nav .menu-open > .nav-treeview {
  display: block;
}

.admin-sidebar-nav > li.header,
.admin-sidebar-nav > li.nav-header {
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  color: #6b7a8d;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pull-right {
  margin-left: auto;
}

/* === Sidebar: dark grey, no AdminLTE2 top padding === */
.main-sidebar {
  padding-top: 0;
  background: #343a40;
  border-right: 0;
  overflow-x: hidden;
}

/* AdminLTE3 uses layout-fixed; AdminLTE2 used .fixed — wire it up */
.layout-fixed .main-sidebar {
  position: fixed;
  height: 100%;
  overflow-y: auto;
}

/* Compensate for the fixed navbar height so content isn't hidden behind it */
.layout-fixed .content-wrapper {
  padding-top: 4rem;
}

/* Brand/logo link inside the sidebar */
.brand-link {
  display: block;
  padding: 0.875rem 1rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  overflow: hidden;
}

.brand-link:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

/* === Pushmenu collapse: fully hide sidebar instead of shrinking to 50 px === */
@media (min-width: 768px) {
  .sidebar-mini.sidebar-collapse .main-sidebar {
    transform: translate(-230px, 0) !important;
    width: 230px !important;
  }
  .sidebar-mini.sidebar-collapse .content-wrapper {
    margin-left: 0 !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary { background: #17a2b8; border-color: #17a2b8; color: #fff; }
.btn-success { background: #198754; border-color: #198754; color: #fff; }
.btn-info { background: #0dcaf0; border-color: #0dcaf0; color: #032830; }
.btn-warning { background: #ffc107; border-color: #ffc107; color: #3d2f00; }
.btn-danger { background: #dc3545; border-color: #dc3545; color: #fff; }
.btn-default,
.btn-secondary { background: #fff; border-color: var(--bs-border-color); color: #1f2937; }
.btn-flat { box-shadow: none; }
.btn-xs {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background: #fff;
}

.table th,
.table td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  vertical-align: top;
}

.table-sm th,
.table-sm td {
  padding: 0.35rem 0.5rem;
}

.table-striped tbody tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.03);
}

.table-hover tbody tr:hover {
  background: rgba(13, 110, 253, 0.05);
}

@media (min-width: 768px) {
  .col-md-8 { width: 66.666667%; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-9 { width: 75%; }
  .px-lg-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .d-lg-none { display: none !important; }
  .offcanvas-lg {
    position: sticky;
    top: 0;
    transform: none !important;
    width: 100%;
    height: 100%;
    z-index: auto;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .collapse.navbar-collapse {
    display: flex !important;
  }
}

@media (min-width: 1200px) {
  .col-xl-2 { width: 16.666667%; }
  .col-xl-10 { width: 83.333333%; }
}

/*# sourceMappingURL=style.css.map */
