/* Custom CSS overrides */

/* Remove container-xxl max-width restriction */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 100%;
  }
}

/* Page content padding and margin */
.page-content {
  padding: 10px !important;
  margin-top: 25px !important;
}

/* Remove card gradient background and shadow */
.card {
  background: #fff !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 1px solid #E9ECEF !important;
  border-radius: 0 !important;
}

/* Dark mode card background */
[data-theme="dark"] .card {
  background: #1e1e2d !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Card body text color */
.card-body {
  background: #fff !important;
}

/* Remove sidebar shadow and gradient */
.sidebar {
  box-shadow: none !important;
  background-image: none !important;
}

.sidebar::after {
  display: none !important;
}

/* Remove navbar shadow */
.navbar {
  box-shadow: none !important;
}

nav > dl, ol, ul {
      margin-top: 0;
      margin-bottom: .5rem !important;
  }

/* Select2 Custom Styles - NobleUI Template */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 0.25rem;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.select2-dropdown {
  background: #ffffff;
  border: 1px solid #80bdff;
  border-radius: 0.25rem;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #e9ecef;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #727cf5;
  color: #ffffff;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #f3f4f6;
  color: #000;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #495057;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  left: 0;
}

/* Dark mode Select2 styles */
[data-theme="dark"] .select2-container--default .select2-selection--single,
[data-theme="dark"] .select2-container--default .select2-selection--multiple {
  background-color: #2a2a40;
  border-color: #3d3d54;
}

[data-theme="dark"] .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #e4e6ef;
}

[data-theme="dark"] .select2-dropdown {
  background-color: #2a2a40;
  border-color: #3d3d54;
}

[data-theme="dark"] .select2-container--default .select2-results__option {
  color: #e4e6ef;
}

[data-theme="dark"] .select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: #2a2a40;
  border-color: #3d3d54;
  color: #e4e6ef;
}

/* Custom Dropdown Styles */
.hover-bg-light:hover {
  background-color: #f3f4f6;
}
