:root {
  --body-bg: #ffffff;
  --sidebar-bg: #ffffff;
  --text-color: #212529;
  --border-color: #dee2e6;
  --hover-color: #f8f9fa;
  --card-bg: #ffffff;
  --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.theme-dark {
  --body-bg: #1a1d23;
  --sidebar-bg: #212429;
  --text-color: #e9ecef;
  --border-color: #2d3339;
  --hover-color: #2a2e35;
  --card-bg: #212429;
  --shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.rtl {
  direction: rtl;
}
.rtl * {
  text-align: right;
}
.rtl.theme-light {
  --body-bg: #ffffff;
  --sidebar-bg: #ffffff;
  --text-color: #212529;
  --border-color: #dee2e6;
  --hover-color: #f8f9fa;
}
.rtl.theme-dark {
  --body-bg: #1a1d23;
  --sidebar-bg: #212429;
  --text-color: #e9ecef;
  --border-color: #2d3339;
  --hover-color: #2a2e35;
}

body {
  background-color: var(--body-bg);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}
body.theme-light {
  background-color: #ffffff;
  color: #212529;
  border-color: #dee2e6;
}
body.theme-light:hover {
  background-color: #f8f9fa;
}
body.theme-dark {
  background-color: #1a1d23;
  color: #e9ecef;
  border-color: #2d3339;
}
body.theme-dark:hover {
  background-color: #2a2e35;
}
body.rtl {
  direction: rtl;
}
body.rtl [class*=ms-] {
  margin-left: 0 !important;
  margin-right: auto !important;
}
body.rtl [class*=me-] {
  margin-right: 0 !important;
  margin-left: auto !important;
}

* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.admin-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-header {
  height: 70px;
  background-color: var(--sidebar-bg);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
}
.admin-header .header-left,
.admin-header .header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-header .header-right {
  margin-left: auto;
}

.admin-sidebar {
  width: 260px;
  background-color: var(--sidebar-bg);
  border-right: 1px solid var(--border-color);
  position: fixed;
  top: 70px;
  bottom: 0;
  overflow-y: auto;
  transition: all 0.3s ease;
}
.admin-sidebar .sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.admin-sidebar .sidebar-menu li a {
  display: flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.admin-sidebar .sidebar-menu li a:hover {
  background-color: var(--hover-color);
}
.admin-sidebar .sidebar-menu li a i {
  width: 20px;
  margin-right: 0.75rem;
  font-size: 1.125rem;
}
.admin-sidebar .sidebar-menu li.active > a {
  background-color: #0d6efd;
  color: #fff;
}

.admin-content {
  margin-left: 260px;
  margin-top: 70px;
  padding: 2rem;
  transition: margin-left 0.3s ease;
}

body.layout-default .admin-header {
  left: 260px;
  transition: all 0.3s ease;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.layout-default .admin-sidebar {
    transform: translateX(-100%);
  }
  body.layout-default .admin-content,
  body.layout-default .admin-header {
    margin-left: 0;
  }
  body.layout-default.sidebar-open .admin-sidebar {
    transform: translateX(0);
  }
}

body.layout-collapsed .admin-sidebar {
  width: 70px;
}
body.layout-collapsed .admin-sidebar .sidebar-menu li a {
  justify-content: center;
}
body.layout-collapsed .admin-sidebar .sidebar-menu li a span {
  display: none;
}
body.layout-collapsed .admin-sidebar .sidebar-menu li a i {
  margin-right: 0;
}
body.layout-collapsed .admin-content {
  margin-left: 70px;
}
body.layout-collapsed .admin-header {
  left: 70px;
}

body.layout-horizontal .admin-header {
  left: 0;
  right: 0;
}
body.layout-horizontal .admin-sidebar {
  position: static;
  width: 100%;
  height: auto;
  border-right: none;
  border-bottom: 1px solid var(--border-color);
}
body.layout-horizontal .admin-sidebar .sidebar-menu {
  display: flex;
}
body.layout-horizontal .admin-sidebar .sidebar-menu li {
  flex: 1;
}
body.layout-horizontal .admin-sidebar .sidebar-menu li a {
  justify-content: center;
}
body.layout-horizontal .admin-content {
  margin-left: 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.layout-horizontal .admin-sidebar .sidebar-menu {
    flex-direction: column;
  }
}

body.layout-boxed {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--body-bg);
}
body.layout-boxed .admin-header,
body.layout-boxed .admin-sidebar {
  max-width: 1200px;
}
body.layout-boxed .admin-content {
  max-width: 1200px;
}

body.layout-detached .admin-sidebar {
  top: 0;
  margin-top: 70px;
}
body.layout-detached .admin-content {
  margin-top: 70px;
}

body.layout-overlay .admin-sidebar {
  z-index: 1020;
  transform: translateX(-100%);
}
body.layout-overlay .admin-content {
  margin-left: 0;
}
body.layout-overlay .admin-header {
  left: 0;
}
body.layout-overlay.sidebar-open .admin-sidebar {
  transform: translateX(0);
}
body.layout-overlay.sidebar-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

body.layout-icon-menu .admin-sidebar {
  width: 70px;
}
body.layout-icon-menu .admin-sidebar .sidebar-menu li a {
  justify-content: center;
  padding: 1rem;
}
body.layout-icon-menu .admin-sidebar .sidebar-menu li a span {
  display: none;
}
body.layout-icon-menu .admin-sidebar .sidebar-menu li a i {
  margin-right: 0;
  font-size: 1.5rem;
}
body.layout-icon-menu .admin-content {
  margin-left: 70px;
}
body.layout-icon-menu .admin-header {
  left: 70px;
}

.rtl .admin-sidebar {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid var(--border-color);
}
.rtl .admin-content {
  margin-left: 0;
  margin-right: 260px;
}
.rtl .admin-header {
  right: 260px;
  left: 0;
}
.rtl.layout-collapsed .admin-content {
  margin-right: 70px;
}
.rtl.layout-collapsed .admin-header {
  right: 70px;
}
.rtl.layout-overlay .admin-sidebar {
  transform: translateX(100%);
}
.rtl.layout-overlay.sidebar-open .admin-sidebar {
  transform: translateX(0);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .admin-content {
    padding: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .admin-content {
    padding: 0.5rem;
  }
}
.admin-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1.5rem;
}
.admin-card .card-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.admin-table {
  width: 100%;
}
.admin-table thead {
  background-color: var(--hover-color);
}
.admin-table thead th {
  padding: 0.75rem;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
}
.admin-table tbody tr {
  transition: background-color 0.2s ease;
}
.admin-table tbody tr:hover {
  background-color: var(--hover-color);
}
.admin-table tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.btn-theme-toggle {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-theme-toggle:hover {
  background-color: var(--hover-color);
}

.badge {
  padding: 0.35em 0.65em;
  border-radius: 0.375rem;
  font-size: 0.75em;
  font-weight: 700;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.breadcrumb-nav a {
  color: var(--text-color);
  text-decoration: none;
}
.breadcrumb-nav a:hover {
  color: #0d6efd;
}

.stat-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stat-card .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.stat-card .stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.stat-card .stat-label {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.875rem;
}

.sidebar-toggle {
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
}
.sidebar-toggle:hover {
  color: #0d6efd;
}

.search-box {
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  background-color: var(--sidebar-bg);
  color: var(--text-color);
}
.search-box input:focus {
  outline: none;
  border-color: #0d6efd;
}
.search-box i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  opacity: 0.5;
}

.dropdown-menu {
  background-color: var(--sidebar-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  z-index: 1050;
}
.dropdown-menu .dropdown-item {
  color: var(--text-color);
}
.dropdown-menu .dropdown-item:hover {
  background-color: var(--hover-color);
}

.modal-content {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}
.modal-content .modal-header {
  border-bottom: 1px solid var(--border-color);
}
.modal-content .modal-body {
  color: var(--text-color);
}
.modal-content .modal-footer {
  border-top: 1px solid var(--border-color);
}

.form-control,
.form-select {
  background-color: var(--sidebar-bg);
  border: 1px solid var(--border-color);
  color: var(--text-color);
}
.form-control:focus,
.form-select:focus {
  background-color: var(--sidebar-bg);
  border-color: #0d6efd;
  color: var(--text-color);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-label {
  color: var(--text-color);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #0d6efd;
}
.switch input:checked + .slider:before {
  transform: translateX(26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: 0.4s;
  border-radius: 24px;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.text-primary {
  color: #0d6efd !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #198754 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.p-xs {
  padding: 0.25rem !important;
}

.p-sm {
  padding: 0.5rem !important;
}

.p-md {
  padding: 1rem !important;
}

.p-lg {
  padding: 1.5rem !important;
}

.p-xl {
  padding: 2rem !important;
}

.m-xs {
  margin: 0.25rem !important;
}

.m-sm {
  margin: 0.5rem !important;
}

.m-md {
  margin: 1rem !important;
}

.m-lg {
  margin: 1.5rem !important;
}

.m-xl {
  margin: 2rem !important;
}

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

.shadow-md {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded-xs {
  border-radius: 0.125rem !important;
}

.rounded-sm {
  border-radius: 0.25rem !important;
}

.rounded-md {
  border-radius: 0.5rem !important;
}

.rounded-lg {
  border-radius: 0.75rem !important;
}

.rounded-xl {
  border-radius: 1rem !important;
}

.transition-slow {
  transition: all 0.5s ease !important;
}

.transition-normal {
  transition: all 0.3s ease !important;
}

.transition-fast {
  transition: all 0.15s ease !important;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.rtl .text-start {
  text-align: right !important;
}
.text-start:not(.rtl *) {
  text-align: left !important;
}

.rtl .text-end {
  text-align: left !important;
}
.text-end:not(.rtl *) {
  text-align: right !important;
}

.rtl .float-start {
  float: right !important;
}
.float-start:not(.rtl *) {
  float: left !important;
}

.rtl .float-end {
  float: left !important;
}
.float-end:not(.rtl *) {
  float: right !important;
}

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