:root {
  --color-primary: #2E786B;
  --color-primary-dark: #1C4C45;
  --color-primary-light: #4A9A8C;
  --color-secondary: #E8AD5B;
  --color-secondary-dark: #D49A3E;
  --bg-body: #F8FAFC;
  --bg-body-secondary: #F1F5F9;
  --bg-white: #FFFFFF;
  --bg-primary-tint: rgba(46, 120, 107, 0.04);
  --text-dark: #1E293B;
  --text-medium: #64748B;
  --text-light: #94A3B8;
  --text-primary: #2E786B;
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;
  --border-primary: #2E786B;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-colored: 0 10px 30px rgba(46, 120, 107, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition-fast: 150ms;
  --transition-base: 250ms;
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1E293B;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #1E293B;
  margin-bottom: 1rem;
}

h1, .h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2, .h2 {
  font-size: 1.5rem;
}

h3, .h3 {
  font-size: 1.25rem;
}

h4, .h4 {
  font-size: 1.125rem;
}

h5, .h5 {
  font-size: 1rem;
}

h6, .h6 {
  font-size: 0.875rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: #64748B;
}

a {
  color: #2E786B;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #1C4C45;
}

hr {
  border-color: #cdd1d5;
}

small, .small {
  font-size: 0.8125rem;
}

strong, .fw-bold {
  font-weight: 600;
}

.text-muted {
  color: #94A3B8 !important;
}

.text-primary {
  color: #2E786B !important;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

::selection {
  background: rgba(46, 120, 107, 0.15);
  color: #1C4C45;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

.app-wrapper {
  min-height: 100vh;
}

.app-sidebar {
  background: #FFFFFF;
  border-right: 1px solid rgba(46, 120, 107, 0.08);
  box-shadow: 4px 0 8px rgba(0, 0, 0, 0.03), 8px 0 24px rgba(46, 120, 107, 0.06);
}
.app-sidebar .sidebar-brand {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(46, 120, 107, 0.08);
  background: linear-gradient(180deg, rgba(46, 120, 107, 0.04) 0%, rgba(46, 120, 107, 0.01) 100%);
}
.app-sidebar .sidebar-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1F2937;
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
}
.app-sidebar .sidebar-brand .brand-link .brand-image {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(46, 120, 107, 0.15);
}
.app-sidebar .sidebar-brand .brand-link .brand-text {
  color: #1C4C45;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sidebar-user-panel,
.user-panel {
  padding: 10px 1rem;
  margin: 1rem 0.5rem;
  background: linear-gradient(135deg, rgba(46, 120, 107, 0.06) 0%, rgba(46, 120, 107, 0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(46, 120, 107, 0.08);
}
.sidebar-user-panel .image img,
.user-panel .image img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(46, 120, 107, 0.3);
  box-shadow: 0 2px 6px rgba(46, 120, 107, 0.12);
}
.sidebar-user-panel .info,
.user-panel .info {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.sidebar-user-panel .info a, .sidebar-user-panel .info span,
.user-panel .info a,
.user-panel .info span {
  color: #1F2937;
  font-weight: 600;
  font-size: 0.8125rem;
}
.sidebar-user-panel .info .d-block,
.user-panel .info .d-block {
  color: #64748B;
  font-size: 0.75rem;
  margin-top: 2px;
}

.sidebar-menu {
  padding: 0 0.25rem;
}
.sidebar-menu .nav-header {
  padding: 1.5rem 1rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2E786B;
}
.sidebar-menu .nav-item {
  margin-bottom: 1px;
}
.sidebar-menu .nav-item > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 11px 1rem;
  margin: 0 0.25rem;
  border-radius: 10px;
  color: #1F2937;
  font-weight: 400;
  font-size: 0.8125rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.sidebar-menu .nav-item > .nav-link .nav-icon {
  width: 20px;
  font-size: 1.05rem;
  color: #64748B;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-menu .nav-item > .nav-link p {
  margin: 0;
  flex: 1;
}
.sidebar-menu .nav-item > .nav-link .nav-arrow {
  margin-inline-start: auto;
  color: #64748B;
  font-size: 0.7rem;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-menu .nav-item > .nav-link:hover {
  background: rgba(46, 120, 107, 0.05);
  color: #1C4C45;
}
.sidebar-menu .nav-item > .nav-link:hover .nav-icon {
  color: #2E786B;
  transform: scale(1.1);
}
.sidebar-menu .nav-item > .nav-link.active {
  background: linear-gradient(135deg, #2E786B 0%, #1C4C45 100%);
  color: #FFFFFF;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(46, 120, 107, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.sidebar-menu .nav-item > .nav-link.active::after {
  content: "";
  position: absolute;
  inset-inline-end: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #E8AD5B;
  border-radius: 9999px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.sidebar-menu .nav-item > .nav-link.active .nav-icon {
  color: #FFFFFF;
}
.sidebar-menu .nav-item.menu-open > .nav-link {
  background: rgba(46, 120, 107, 0.08);
  color: #1C4C45;
  font-weight: 500;
}
.sidebar-menu .nav-item.menu-open > .nav-link .nav-icon {
  color: #2E786B;
}
.sidebar-menu .nav-item.menu-open > .nav-link .nav-arrow {
  transform: rotate(-90deg);
  color: #E8AD5B;
}
.sidebar-menu .nav-treeview {
  margin: 0.25rem 0.5rem;
  padding: 0.25rem 0;
  background: rgba(46, 120, 107, 0.03);
  border-radius: 10px;
  border-inline-start: 3px solid #2E786B;
}
.sidebar-menu .nav-treeview .nav-item > .nav-link {
  padding: 9px 1rem;
  padding-inline-start: 1.5rem;
  font-size: 0.8125rem;
  color: #64748B;
  margin: 0 0.25rem;
  border-radius: 6px;
}
.sidebar-menu .nav-treeview .nav-item > .nav-link:hover {
  color: #2E786B;
  background: rgba(46, 120, 107, 0.06);
}
.sidebar-menu .nav-treeview .nav-item > .nav-link.active {
  color: #1C4C45;
  background: rgba(46, 120, 107, 0.1);
  font-weight: 600;
  position: relative;
}
.sidebar-menu .nav-treeview .nav-item > .nav-link.active::before {
  content: "";
  position: absolute;
  inset-inline-start: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #E8AD5B;
  border-radius: 9999px;
  box-shadow: 0 0 6px rgba(232, 173, 91, 0.5);
}
.sidebar-menu .nav-treeview .nav-item > .nav-link.active::after {
  display: none;
}

[dir=rtl] .sidebar-menu .nav-item > .nav-link.active::before {
  border-radius: 9999px 0 0 9999px;
}

.sidebar-menu > .nav-item > .nav-link:has(.nav-arrow),
.sidebar-menu .nav-item .nav-link:has(i.nav-arrow) {
  color: #2E786B !important;
}
.sidebar-menu > .nav-item > .nav-link:has(.nav-arrow) .nav-icon,
.sidebar-menu > .nav-item > .nav-link:has(.nav-arrow) i:first-child,
.sidebar-menu .nav-item .nav-link:has(i.nav-arrow) .nav-icon,
.sidebar-menu .nav-item .nav-link:has(i.nav-arrow) i:first-child {
  color: #2E786B !important;
}
.sidebar-menu > .nav-item > .nav-link:has(.nav-arrow) p,
.sidebar-menu .nav-item .nav-link:has(i.nav-arrow) p {
  color: #2E786B !important;
}
.sidebar-menu > .nav-item > .nav-link:has(.nav-arrow) .nav-arrow,
.sidebar-menu > .nav-item > .nav-link:has(.nav-arrow) i.nav-arrow,
.sidebar-menu .nav-item .nav-link:has(i.nav-arrow) .nav-arrow,
.sidebar-menu .nav-item .nav-link:has(i.nav-arrow) i.nav-arrow {
  color: #2E786B !important;
}

.app-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  height: 60px;
}
.app-header .navbar-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  color: #64748B;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.app-header .navbar-nav .nav-item .nav-link:hover {
  background: rgba(46, 120, 107, 0.04);
  color: #2E786B;
}
.app-header .navbar-nav .nav-item .nav-link i {
  font-size: 1.125rem;
}
.app-header .dropdown-menu {
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.app-header .dropdown-menu .dropdown-item {
  border-radius: 6px;
  padding: 0.5rem 1rem;
  color: #64748B;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.app-header .dropdown-menu .dropdown-item:hover {
  background: rgba(46, 120, 107, 0.04);
  color: #2E786B;
}
.app-header .dropdown-menu .dropdown-item i {
  width: 20px;
  margin-inline-end: 0.5rem;
  color: #94A3B8;
}
.app-header .dropdown-menu .dropdown-divider {
  margin: 0.5rem 0;
  border-color: #F1F5F9;
}
.app-header .user-menu .user-header {
  background: #F8FAFC;
}

.app-main {
  background: transparent;
}

.app-content-header {
  padding: 1.5rem 2rem !important;
}

.app-content {
  padding: 0 2rem 2rem;
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E293B;
  margin: 0;
  letter-spacing: -0.02em;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}
.breadcrumb .breadcrumb-item {
  font-size: 0.8125rem;
  color: #94A3B8;
}
.breadcrumb .breadcrumb-item a {
  color: #64748B;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #2E786B;
}
.breadcrumb .breadcrumb-item.active {
  color: #64748B;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #94A3B8;
}

.app-footer {
  background: #FFFFFF;
  border-top: 1px solid #F1F5F9;
  padding: 1rem 2rem;
  color: #94A3B8;
  font-size: 0.8125rem;
}
.app-footer a {
  color: #2E786B;
}
.app-footer a:hover {
  color: #1C4C45;
}

@media (max-width: 991.98px) {
  .app-content-header {
    padding: 1rem;
  }
  .app-content {
    padding: 0 1rem 1rem;
  }
  .app-footer {
    padding: 1rem;
  }
}
.card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}
.card.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
.card.card-primary {
  border-top: 3px solid #2E786B;
}
.card.card-secondary {
  border-top: 3px solid #E8AD5B;
}
.card.card-success {
  border-top: 3px solid #10B981;
}
.card.card-warning {
  border-top: 3px solid #F59E0B;
}
.card.card-danger {
  border-top: 3px solid #EF4444;
}
.card.card-info {
  border-top: 3px solid #3B82F6;
}
.card .card-header {
  background: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  padding: 1rem 1.5rem;
}
.card .card-header .card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1E293B;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card .card-header .card-title i {
  color: #2E786B;
  font-size: 1.125rem;
}
.card .card-header .card-tools {
  margin-inline-start: auto;
}
.card .card-header .card-tools .btn {
  padding: 0.25rem 0.5rem;
}
.card .card-body {
  padding: 1.5rem;
  color: #64748B;
}
.card .card-footer {
  background: #F8FAFC;
  border-top: 1px solid #F1F5F9;
  padding: 1rem 1.5rem;
}

.btn {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:active::after {
  width: 300px;
  height: 300px;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #2E786B 0%, #1C4C45 100%);
  border-color: #2E786B;
  color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(46, 120, 107, 0.2);
}
.btn.btn-primary:hover {
  background: linear-gradient(135deg, #4A9A8C 0%, #2E786B 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 120, 107, 0.3);
}
.btn.btn-primary:active {
  transform: translateY(0);
}
.btn.btn-secondary {
  background: #F1F5F9;
  border-color: #E2E8F0;
  color: #64748B;
}
.btn.btn-secondary:hover {
  background: #E2E8F0;
  border-color: #CBD5E1;
  color: #1E293B;
}
.btn.btn-success {
  background: linear-gradient(135deg, #10B981 0%, rgb(11.9402985075, 138.0597014925, 96.2686567164) 100%);
  border-color: #10B981;
  color: #FFFFFF;
}
.btn.btn-success:hover {
  background: linear-gradient(135deg, rgb(18.0298507463, 208.4701492537, 145.3656716418) 0%, #10B981 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.btn.btn-danger {
  background: linear-gradient(135deg, #EF4444 0%, rgb(234.9802955665, 21.0197044335, 21.0197044335) 100%);
  border-color: #EF4444;
  color: #FFFFFF;
}
.btn.btn-danger:hover {
  background: linear-gradient(135deg, rgb(241.0098522167, 91.4901477833, 91.4901477833) 0%, #EF4444 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.btn.btn-warning {
  background: linear-gradient(135deg, #F59E0B 0%, rgb(196.9291338583, 126.7125984252, 8.0708661417) 100%);
  border-color: #F59E0B;
  color: #1E293B;
}
.btn.btn-warning:hover {
  background: linear-gradient(135deg, rgb(246.0039370079, 167.7381889764, 35.4960629921) 0%, #F59E0B 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.btn.btn-info {
  background: linear-gradient(135deg, #3B82F6 0%, rgb(11.1512195122, 99.1219512195, 242.8487804878) 100%);
  border-color: #3B82F6;
  color: #FFFFFF;
}
.btn.btn-info:hover {
  background: linear-gradient(135deg, rgb(83.3804878049, 145.5487804878, 247.1195121951) 0%, #3B82F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.btn.btn-outline-primary {
  background: transparent;
  border-color: #2E786B;
  color: #2E786B;
}
.btn.btn-outline-primary:hover {
  background: #2E786B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 120, 107, 0.25);
}
.btn.btn-outline-secondary {
  background: transparent;
  border-color: #CBD5E1;
  color: #64748B;
}
.btn.btn-outline-secondary:hover {
  background: #F1F5F9;
  color: #1E293B;
}
.btn.btn-outline-danger {
  background: transparent;
  border-color: #EF4444;
  color: #EF4444;
}
.btn.btn-outline-danger:hover {
  background: #EF4444;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn.btn-light {
  background: #FFFFFF;
  border-color: #E2E8F0;
  color: #64748B;
}
.btn.btn-light:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #1E293B;
}
.btn.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.8125rem;
  border-radius: 6px;
}
.btn.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: 16px;
}

.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-radius: 10px 0 0 10px;
}
.btn-group .btn:last-child {
  border-radius: 0 10px 10px 0;
}

[dir=rtl] .btn-group .btn:first-child {
  border-radius: 0 10px 10px 0;
}
[dir=rtl] .btn-group .btn:last-child {
  border-radius: 10px 0 0 10px;
}

.badge {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.badge.bg-primary, .badge.badge-primary {
  background: rgba(46, 120, 107, 0.04) !important;
  color: #1C4C45 !important;
}
.badge.bg-secondary, .badge.badge-secondary {
  background: rgba(232, 173, 91, 0.08) !important;
  color: #D49A3E !important;
}
.badge.bg-success, .badge.badge-success {
  background: rgba(16, 185, 129, 0.1) !important;
  color: rgb(9.9104477612, 114.5895522388, 79.9029850746) !important;
}
.badge.bg-warning, .badge.badge-warning {
  background: rgba(245, 158, 11, 0.1) !important;
  color: rgb(147.937007874, 95.188976378, 6.062992126) !important;
}
.badge.bg-danger, .badge.badge-danger {
  background: rgba(239, 68, 68, 0.1) !important;
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335) !important;
}
.badge.bg-info, .badge.badge-info {
  background: rgba(59, 130, 246, 0.1) !important;
  color: rgb(10.0317073171, 89.1707317073, 218.4682926829) !important;
}
.badge.rounded-pill {
  border-radius: 9999px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.alert {
  border-radius: 10px;
  border: none;
  border-right: 4px solid;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.alert .alert-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.alert .alert-content {
  flex: 1;
}
.alert .alert-content .alert-heading {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.alert .alert-content p:last-child {
  margin-bottom: 0;
}
.alert.alert-success {
  background: #ECFDF5;
  border-color: #10B981;
  color: rgb(9.9104477612, 114.5895522388, 79.9029850746);
}
.alert.alert-success .alert-icon {
  color: #10B981;
}
.alert.alert-warning {
  background: #FFFBEB;
  border-color: #F59E0B;
  color: rgb(123.4409448819, 79.4271653543, 5.0590551181);
}
.alert.alert-warning .alert-icon {
  color: #F59E0B;
}
.alert.alert-danger {
  background: #FEF2F2;
  border-color: #EF4444;
  color: rgb(212.3325123153, 18.1674876847, 18.1674876847);
}
.alert.alert-danger .alert-icon {
  color: #EF4444;
}
.alert.alert-info {
  background: #EFF6FF;
  border-color: #3B82F6;
  color: rgb(8.912195122, 79.2195121951, 194.087804878);
}
.alert.alert-info .alert-icon {
  color: #3B82F6;
}
.alert .btn-close {
  opacity: 0.5;
}
.alert .btn-close:hover {
  opacity: 1;
}

[dir=rtl] .alert {
  border-right: none;
  border-left: 4px solid;
}

.swal2-popup {
  border-radius: 20px !important;
  padding: 2rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04) !important;
}
.swal2-popup .swal2-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 600 !important;
  color: #1E293B !important;
  font-size: 1.5rem !important;
}
.swal2-popup .swal2-html-container {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  color: #64748B !important;
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
}
.swal2-popup .swal2-icon {
  margin: 1rem auto 1.5rem !important;
}
.swal2-popup .swal2-icon.swal2-success {
  border-color: #10B981 !important;
}
.swal2-popup .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(16, 185, 129, 0.3) !important;
}
.swal2-popup .swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #10B981 !important;
}
.swal2-popup .swal2-icon.swal2-error {
  border-color: #EF4444 !important;
}
.swal2-popup .swal2-icon.swal2-error .swal2-x-mark-line-left,
.swal2-popup .swal2-icon.swal2-error .swal2-x-mark-line-right {
  background-color: #EF4444 !important;
}
.swal2-popup .swal2-icon.swal2-warning {
  border-color: #F59E0B !important;
  color: #F59E0B !important;
}
.swal2-popup .swal2-icon.swal2-info {
  border-color: #3B82F6 !important;
  color: #3B82F6 !important;
}
.swal2-popup .swal2-actions {
  gap: 0.5rem !important;
}
.swal2-popup .swal2-actions .swal2-styled {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 10px !important;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.swal2-popup .swal2-actions .swal2-styled.swal2-confirm {
  background: linear-gradient(135deg, #2E786B 0%, #1C4C45 100%) !important;
}
.swal2-popup .swal2-actions .swal2-styled.swal2-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 120, 107, 0.3) !important;
}
.swal2-popup .swal2-actions .swal2-styled.swal2-cancel {
  background: #F8FAFC !important;
  color: #64748B !important;
  border: 1px solid #E2E8F0 !important;
}
.swal2-popup .swal2-actions .swal2-styled.swal2-cancel:hover {
  background: #F1F5F9 !important;
  color: #1E293B !important;
}
.swal2-popup .swal2-actions .swal2-styled.swal2-deny {
  background: linear-gradient(135deg, #EF4444 0%, rgb(234.9802955665, 21.0197044335, 21.0197044335) 100%) !important;
}

.swal2-backdrop-show {
  background: rgba(10, 29, 26, 0.6) !important;
  backdrop-filter: blur(4px);
}

.modal .modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
.modal .modal-header {
  border-bottom: 1px solid #F1F5F9;
  padding: 1.5rem;
}
.modal .modal-header .modal-title {
  font-weight: 600;
  color: #1E293B;
}
.modal .modal-header .btn-close {
  opacity: 0.5;
}
.modal .modal-header .btn-close:hover {
  opacity: 1;
}
.modal .modal-body {
  padding: 1.5rem;
}
.modal .modal-footer {
  border-top: 1px solid #F1F5F9;
  padding: 1rem 1.5rem;
  gap: 0.5rem;
}

.modal-backdrop {
  background: rgba(10, 29, 26, 0.5);
}
.modal-backdrop.show {
  opacity: 1;
  backdrop-filter: blur(4px);
}

.dropdown-menu {
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  padding: 0.5rem;
}
.dropdown-menu .dropdown-item {
  border-radius: 6px;
  padding: 0.5rem 1rem;
  color: #64748B;
  font-size: 0.8125rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-menu .dropdown-item:hover {
  background: rgba(46, 120, 107, 0.04);
  color: #2E786B;
}
.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active {
  background: #2E786B;
  color: #FFFFFF;
}
.dropdown-menu .dropdown-item i {
  width: 20px;
  margin-inline-end: 0.5rem;
}
.dropdown-menu .dropdown-divider {
  margin: 0.5rem 0;
  border-color: #F1F5F9;
}

.tooltip .tooltip-inner {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  background: #1E293B;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
}

.progress {
  height: 8px;
  background: #F1F5F9;
  border-radius: 9999px;
  overflow: hidden;
}
.progress .progress-bar {
  background: linear-gradient(90deg, #2E786B 0%, #4A9A8C 100%);
  border-radius: 9999px;
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.progress .progress-bar.bg-success {
  background: linear-gradient(90deg, #10B981 0%, rgb(20.0597014925, 231.9402985075, 161.7313432836) 100%);
}
.progress .progress-bar.bg-warning {
  background: linear-gradient(90deg, #F59E0B 0%, rgb(247.0078740157, 177.4763779528, 59.9921259843) 100%);
}
.progress .progress-bar.bg-danger {
  background: linear-gradient(90deg, #EF4444 0%, rgb(243.0197044335, 114.9802955665, 114.9802955665) 100%);
}

.spinner-border {
  color: #2E786B;
}

.spinner-grow {
  color: #2E786B;
}

.form-label {
  font-weight: 500;
  font-size: 0.8125rem;
  color: #1E293B;
  margin-bottom: 0.5rem;
}

.col-form-label {
  font-weight: 500;
  color: #1E293B;
}

.form-control {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  color: #1E293B;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.form-control::placeholder {
  color: #94A3B8;
}
.form-control:hover {
  border-color: #CBD5E1;
}
.form-control:focus {
  border-color: #2E786B;
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.1);
  outline: none;
}
.form-control:disabled, .form-control[readonly] {
  background: #F8FAFC;
  color: #94A3B8;
  cursor: not-allowed;
}
.form-control.is-valid {
  border-color: #10B981;
}
.form-control.is-valid:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.form-control.is-invalid {
  border-color: #EF4444;
}
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.form-control-sm {
  font-size: 0.8125rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.form-control-lg {
  font-size: 0.9375rem;
  padding: 1rem 1.5rem;
  border-radius: 16px;
}

.form-select {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  color: #1E293B;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  padding-inline-end: 2.5rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.form-select:hover {
  border-color: #CBD5E1;
}
.form-select:focus {
  border-color: #2E786B;
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.1);
  outline: none;
}

.input-group .input-group-text {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  color: #64748B;
  font-size: 0.8125rem;
}
.input-group .input-group-text i {
  color: #94A3B8;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-inline-start: -1px;
}
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}
.input-group:not(.has-validation) > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  border: 2px solid #CBD5E1;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.form-check-input:checked {
  background-color: #2E786B;
  border-color: #2E786B;
}
.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.1);
  border-color: #2E786B;
}
.form-check-input[type=checkbox] {
  border-radius: 6px;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-check-label {
  font-size: 0.8125rem;
  color: #64748B;
  cursor: pointer;
  padding-inline-start: 0.25rem;
}

.form-switch .form-check-input {
  width: 40px;
  height: 22px;
  border-radius: 9999px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2394A3B8'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.select2-container--bootstrap-5 .select2-selection {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  min-height: 40px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.select2-container--bootstrap-5 .select2-selection:hover {
  border-color: #CBD5E1;
}
.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: #2E786B !important;
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.1) !important;
  outline: none !important;
}
.select2-container--bootstrap-5 .select2-selection--single {
  display: flex;
  align-items: center;
}
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  color: #1E293B;
  line-height: 1.5;
}
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
  color: #94A3B8;
}
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
  color: #94A3B8;
  font-size: 1.25rem;
}
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover {
  color: #EF4444;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
  padding: 0.25rem 0.5rem;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
  background: rgba(46, 120, 107, 0.04);
  border: none;
  border-radius: 6px;
  color: #1C4C45;
  font-size: 0.8125rem;
  padding: 0.25rem 0.5rem;
  margin: 2px;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #2E786B;
  margin-inline-end: 0.25rem;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover {
  color: #EF4444;
}
.select2-container--bootstrap-5 .select2-dropdown {
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  margin-top: 0.25rem;
  overflow: hidden;
}
.select2-container--bootstrap-5 .select2-search--dropdown {
  padding: 0.5rem;
}
.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field {
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 0.5rem;
}
.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field:focus {
  border-color: #2E786B !important;
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.1) !important;
  outline: none !important;
}
.select2-container--bootstrap-5 .select2-results__option {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: #64748B;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.select2-container--bootstrap-5 .select2-results__option--highlighted, .select2-container--bootstrap-5 .select2-results__option--highlighted[aria-selected] {
  background: rgba(46, 120, 107, 0.04);
  color: #1C4C45;
}
.select2-container--bootstrap-5 .select2-results__option--selected, .select2-container--bootstrap-5 .select2-results__option[aria-selected=true] {
  background: #2E786B;
  color: #FFFFFF;
}
.select2-container--bootstrap-5 .select2-results__option--disabled {
  color: #94A3B8;
}
.select2-container--bootstrap-5 .select2-results__group {
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #1E293B;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: 56px;
  padding: 1.5rem 1rem 0.5rem;
}
.form-floating > label {
  padding: 1rem;
  color: #94A3B8;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: #2E786B;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.valid-feedback {
  font-size: 0.8125rem;
  color: #10B981;
}

.invalid-feedback {
  font-size: 0.8125rem;
  color: #EF4444;
}

.form-text {
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-top: 0.25rem;
}

.note-editor.note-frame {
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
}
.note-editor.note-frame .note-toolbar {
  background: #F8FAFC;
  border-bottom: 1px solid #F1F5F9;
  padding: 0.5rem;
}
.note-editor.note-frame .note-toolbar .note-btn {
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #64748B;
}
.note-editor.note-frame .note-toolbar .note-btn:hover {
  background: rgba(46, 120, 107, 0.04);
  border-color: #2E786B;
  color: #2E786B;
}
.note-editor.note-frame .note-toolbar .note-btn.active {
  background: #2E786B;
  border-color: #2E786B;
  color: #FFFFFF;
}
.note-editor.note-frame .note-editing-area .note-editable {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1E293B;
  background: #FFFFFF;
  padding: 1rem;
}
.note-editor.note-frame .note-statusbar {
  background: #F8FAFC;
  border-top: 1px solid #F1F5F9;
}

.table,
table.dataTable {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1E293B;
  border-collapse: separate !important;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}
.table thead th, .table thead td,
table.dataTable thead th,
table.dataTable thead td {
  background: #F8FAFC;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #1E293B;
  padding: 1rem !important;
  border-bottom: 1px solid rgba(46, 120, 107, 0.2) !important;
  white-space: nowrap;
}
.table thead th:first-child, .table thead td:first-child,
table.dataTable thead th:first-child,
table.dataTable thead td:first-child {
  border-top-right-radius: 10px;
}
.table thead th:last-child, .table thead td:last-child,
table.dataTable thead th:last-child,
table.dataTable thead td:last-child {
  border-top-left-radius: 10px;
}
.table tbody tr,
table.dataTable tbody tr {
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.table tbody tr:hover,
table.dataTable tbody tr:hover {
  background: rgba(46, 120, 107, 0.04) !important;
}
.table tbody td,
table.dataTable tbody td {
  padding: 1rem !important;
  vertical-align: middle;
  border-bottom: 1px solid #F1F5F9 !important;
  color: #64748B;
  font-size: 0.8125rem;
}
.table tbody tr:last-child td,
table.dataTable tbody tr:last-child td {
  border-bottom: none;
}
.table tbody tr:last-child td:first-child,
table.dataTable tbody tr:last-child td:first-child {
  border-bottom-right-radius: 10px;
}
.table tbody tr:last-child td:last-child,
table.dataTable tbody tr:last-child td:last-child {
  border-bottom-left-radius: 10px;
}
.table.table-striped > tbody > tr:nth-of-type(odd) > *,
table.dataTable.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: $table-striped-bg;
  --bs-table-striped-bg: $table-striped-bg;
  background-color: rgba(0, 0, 0, 0.01) !important;
}
.table.table-bordered,
table.dataTable.table-bordered {
  border: 1px solid #E2E8F0;
}
.table.table-bordered th, .table.table-bordered td,
table.dataTable.table-bordered th,
table.dataTable.table-bordered td {
  border: 1px solid #F1F5F9;
}

table.dataTable thead th,
table.dataTable thead td {
  background: #F8FAFC !important;
}
table.dataTable.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: $table-striped-bg;
  --bs-table-striped-bg: $table-striped-bg;
  --bs-table-accent-bg: $table-striped-bg;
  background-color: rgba(0, 0, 0, 0.01) !important;
  box-shadow: none !important;
}
table.dataTable.table-striped > tbody > tr:nth-of-type(even) > * {
  background-color: transparent !important;
}
table.dataTable thead th.dt-orderable-asc, table.dataTable thead th.dt-orderable-desc, table.dataTable thead th.sorting, table.dataTable thead th.sorting_asc, table.dataTable thead th.sorting_desc, table.dataTable thead td.dt-orderable-asc, table.dataTable thead td.dt-orderable-desc, table.dataTable thead td.sorting, table.dataTable thead td.sorting_asc, table.dataTable thead td.sorting_desc {
  cursor: pointer;
}
table.dataTable thead th.dt-orderable-asc:hover, table.dataTable thead th.dt-orderable-desc:hover, table.dataTable thead th.sorting:hover, table.dataTable thead th.sorting_asc:hover, table.dataTable thead th.sorting_desc:hover, table.dataTable thead td.dt-orderable-asc:hover, table.dataTable thead td.dt-orderable-desc:hover, table.dataTable thead td.sorting:hover, table.dataTable thead td.sorting_asc:hover, table.dataTable thead td.sorting_desc:hover {
  background: rgba(46, 120, 107, 0.08);
}
table.dataTable thead th .dt-column-order, table.dataTable thead td .dt-column-order {
  color: #94A3B8;
}
table.dataTable thead th .dt-column-order::before, table.dataTable thead th .dt-column-order::after, table.dataTable thead td .dt-column-order::before, table.dataTable thead td .dt-column-order::after {
  opacity: 0.3;
}
table.dataTable thead th.sorting_asc .dt-column-order::before, table.dataTable thead th.dt-ordering-asc .dt-column-order::before, table.dataTable thead td.sorting_asc .dt-column-order::before, table.dataTable thead td.dt-ordering-asc .dt-column-order::before {
  opacity: 1;
  color: #2E786B;
}
table.dataTable thead th.sorting_desc .dt-column-order::after, table.dataTable thead th.dt-ordering-desc .dt-column-order::after, table.dataTable thead td.sorting_desc .dt-column-order::after, table.dataTable thead td.dt-ordering-desc .dt-column-order::after {
  opacity: 1;
  color: #2E786B;
}
table.dataTable tbody tr.selected {
  background: rgba(46, 120, 107, 0.08) !important;
}
table.dataTable tbody tr.selected td {
  color: #1C4C45;
}
table.dataTable tbody td.dt-empty {
  text-align: center;
  color: #94A3B8;
  font-style: italic;
  padding: 2rem !important;
}

div.dt-container .dt-layout-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
div.dt-container .dt-layout-row:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
div.dt-container div.dt-length label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748B;
}
div.dt-container div.dt-length select {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 0.25rem 1rem 0.25rem 0.5rem;
  color: #1E293B;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
div.dt-container div.dt-length select:hover {
  border-color: #CBD5E1;
}
div.dt-container div.dt-length select:focus {
  border-color: #2E786B;
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.1);
  outline: none;
}
div.dt-container div.dt-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
div.dt-container div.dt-search label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748B;
  margin: 0;
  white-space: nowrap;
}
div.dt-container div.dt-search input {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  color: #1E293B;
  background: #FFFFFF;
  min-width: 200px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
div.dt-container div.dt-search input::placeholder {
  color: #94A3B8;
}
div.dt-container div.dt-search input:hover {
  border-color: #CBD5E1;
}
div.dt-container div.dt-search input:focus {
  border-color: #2E786B;
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.1);
  outline: none;
}
div.dt-container div.dt-info {
  font-size: 0.8125rem;
  color: #94A3B8;
}
div.dt-container div.dt-paging .pagination {
  margin: 0;
  gap: 0.25rem;
}
div.dt-container div.dt-paging .pagination .page-item .page-link {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748B;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px !important;
  padding: 0.5rem 1rem;
  min-width: 36px;
  text-align: center;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
div.dt-container div.dt-paging .pagination .page-item .page-link:hover {
  background: rgba(46, 120, 107, 0.04);
  border-color: #2E786B;
  color: #2E786B;
}
div.dt-container div.dt-paging .pagination .page-item.active .page-link {
  background: #2E786B;
  border-color: #2E786B;
  color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(46, 120, 107, 0.2);
}
div.dt-container div.dt-paging .pagination .page-item.disabled .page-link {
  background: #F8FAFC;
  border-color: #F1F5F9;
  color: #94A3B8;
  cursor: not-allowed;
}
div.dt-container .dt-processing {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  padding: 1rem 1.5rem;
  color: #64748B;
  font-size: 0.8125rem;
}
div.dt-container .dt-processing > div:last-child {
  display: flex;
  gap: 0.25rem;
}
div.dt-container .dt-processing > div:last-child > div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2E786B;
  animation: dtPulse 1.4s ease-in-out infinite;
}
div.dt-container .dt-processing > div:last-child > div:nth-child(2) {
  animation-delay: 0.2s;
}
div.dt-container .dt-processing > div:last-child > div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dtPulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.table-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: flex-start;
}
.table-actions .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.8125rem;
}
.table-actions .btn i {
  font-size: 0.875rem;
}

td.text-center .table-actions,
td[style*="text-align: center"] .table-actions {
  justify-content: center;
}

.table-responsive {
  border-radius: 16px;
}
.table-responsive::-webkit-scrollbar {
  height: 6px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 9999px;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.row-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #2E786B;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.row-actions a:hover {
  text-decoration: none;
  color: #1C4C45;
}
.row-actions a i {
  font-size: 0.875rem;
}
.row-actions .DeleteRowButton {
  color: #EF4444;
}
.row-actions .DeleteRowButton:hover {
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}

.small-box {
  position: relative;
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: none;
  min-height: 120px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.small-box::before {
  content: "";
  position: absolute;
  top: -30%;
  inset-inline-end: -15%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.small-box::after {
  content: "";
  position: absolute;
  bottom: -40%;
  inset-inline-start: -10%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.small-box .small-box-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.small-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.small-box:hover::before {
  transform: scale(1.3) rotate(10deg);
}
.small-box:hover::after {
  transform: scale(1.2) rotate(-10deg);
}
.small-box:hover .small-box-shine {
  left: 150%;
}
.small-box:hover .icon,
.small-box:hover .small-box-icon {
  transform: scale(1.15) rotate(10deg);
}
.small-box .inner {
  position: relative;
  z-index: 2;
}
.small-box .inner h3, .small-box .inner .stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: inherit;
  margin: 0 0 0.25rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.small-box .inner p, .small-box .inner .stat-label {
  font-size: 0.8125rem;
  color: inherit;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
}
.small-box .icon,
.small-box .small-box-icon {
  position: absolute;
  top: 50%;
  inset-inline-end: 1.5rem;
  transform: translateY(-50%);
  font-size: 4rem;
  color: inherit;
  opacity: 0.25;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.small-box .small-box-footer,
.small-box .stat-footer {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8125rem;
  color: inherit;
  opacity: 0.9;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.small-box .small-box-footer i,
.small-box .stat-footer i {
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.small-box .small-box-footer:hover,
.small-box .stat-footer:hover {
  opacity: 1;
}
.small-box .small-box-footer:hover i,
.small-box .stat-footer:hover i {
  transform: translateX(4px);
}
.small-box.bg-primary, .small-box.text-bg-primary {
  background: linear-gradient(135deg, #4A9A8C 0%, #2E786B 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(46, 120, 107, 0.3);
}
.small-box.bg-primary:hover, .small-box.text-bg-primary:hover {
  box-shadow: 0 20px 40px rgba(46, 120, 107, 0.4);
}
.small-box.bg-success, .small-box.text-bg-success {
  background: linear-gradient(135deg, #34d399 0%, #10B981 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}
.small-box.bg-success:hover, .small-box.text-bg-success:hover {
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}
.small-box.bg-warning, .small-box.text-bg-warning {
  background: linear-gradient(135deg, #fbbf24 0%, #F59E0B 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}
.small-box.bg-warning:hover, .small-box.text-bg-warning:hover {
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
}
.small-box.bg-danger, .small-box.text-bg-danger {
  background: linear-gradient(135deg, #f87171 0%, #EF4444 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}
.small-box.bg-danger:hover, .small-box.text-bg-danger:hover {
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4);
}
.small-box.bg-info, .small-box.text-bg-info {
  background: linear-gradient(135deg, #60a5fa 0%, #3B82F6 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}
.small-box.bg-info:hover, .small-box.text-bg-info:hover {
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}
.small-box.bg-secondary, .small-box.text-bg-secondary {
  background: linear-gradient(135deg, #F0C078 0%, #E8AD5B 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(232, 173, 91, 0.3);
}
.small-box.bg-secondary:hover, .small-box.text-bg-secondary:hover {
  box-shadow: 0 20px 40px rgba(232, 173, 91, 0.4);
}
.small-box.bg-dark, .small-box.text-bg-dark {
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.small-box.bg-dark:hover, .small-box.text-bg-dark:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.small-box.bg-light, .small-box.text-bg-light {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  color: #1E293B;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.small-box.bg-light::before, .small-box.bg-light::after, .small-box.text-bg-light::before, .small-box.text-bg-light::after {
  background: rgba(0, 0, 0, 0.03);
}
.small-box.bg-light .small-box-footer, .small-box.text-bg-light .small-box-footer {
  border-top-color: rgba(0, 0, 0, 0.1);
}
.small-box.bg-light .icon, .small-box.bg-light .small-box-icon, .small-box.text-bg-light .icon, .small-box.text-bg-light .small-box-icon {
  opacity: 0.15;
}
.small-box.bg-light:hover, .small-box.text-bg-light:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

[dir=rtl] .small-box .small-box-footer:hover i,
[dir=rtl] .small-box .stat-footer:hover i {
  transform: translateX(-4px);
}

.info-box {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
}
.info-box .info-box-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(46, 120, 107, 0.04);
  color: #2E786B;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-inline-end: 1rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.info-box .info-box-icon.bg-primary, .info-box .info-box-icon.text-bg-primary {
  background: rgba(46, 120, 107, 0.04);
  color: #2E786B;
}
.info-box .info-box-icon.bg-success, .info-box .info-box-icon.text-bg-success {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.info-box .info-box-icon.bg-warning, .info-box .info-box-icon.text-bg-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.info-box .info-box-icon.bg-danger, .info-box .info-box-icon.text-bg-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}
.info-box .info-box-icon.bg-info, .info-box .info-box-icon.text-bg-info {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}
.info-box .info-box-content {
  flex: 1;
}
.info-box .info-box-content .info-box-text {
  font-size: 0.8125rem;
  color: #64748B;
  margin-bottom: 0.25rem;
}
.info-box .info-box-content .info-box-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E293B;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.info-box .info-box-content .progress {
  margin-top: 0.5rem;
  height: 4px;
}
.info-box .info-box-content .progress-description {
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-top: 0.25rem;
}
.info-box:hover .info-box-icon {
  transform: scale(1.1);
}

.timeline {
  position: relative;
  padding-inline-start: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 8px;
  width: 2px;
  background: #E2E8F0;
}
.timeline .timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}
.timeline .timeline-item:last-child {
  padding-bottom: 0;
}
.timeline .timeline-item .timeline-dot {
  position: absolute;
  inset-inline-start: calc(-2rem + 4px);
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2E786B;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.2);
}
.timeline .timeline-item .timeline-dot.dot-success {
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}
.timeline .timeline-item .timeline-dot.dot-warning {
  background: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}
.timeline .timeline-item .timeline-dot.dot-danger {
  background: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}
.timeline .timeline-item .timeline-dot.dot-info {
  background: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.timeline .timeline-item .timeline-content {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline .timeline-item .timeline-content:hover {
  border-color: #CBD5E1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.timeline .timeline-item .timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.timeline .timeline-item .timeline-title {
  font-weight: 500;
  font-size: 0.8125rem;
  color: #1E293B;
  margin: 0;
}
.timeline .timeline-item .timeline-time {
  font-size: 0.75rem;
  color: #94A3B8;
}
.timeline .timeline-item .timeline-body {
  font-size: 0.8125rem;
  color: #64748B;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
  backdrop-filter: blur(2px);
}
.loading-overlay .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #F1F5F9;
  border-top-color: #2E786B;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.form-control[type=email],
.form-control[type=number],
.form-control[type=tel],
.form-control[type=url] {
  border: 1px solid #E2E8F0;
}
.form-control[type=email]:hover,
.form-control[type=number]:hover,
.form-control[type=tel]:hover,
.form-control[type=url]:hover {
  border-color: #CBD5E1;
}
.form-control[type=email]:focus,
.form-control[type=number]:focus,
.form-control[type=tel]:focus,
.form-control[type=url]:focus {
  border-color: #2E786B;
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.1);
  outline: none;
}

.input-group > .form-control[type=email]:last-child:not(:first-child),
.input-group > .form-control[type=number]:last-child:not(:first-child),
.input-group > .form-control[type=tel]:last-child:not(:first-child),
.input-group > .form-control[type=url]:last-child:not(:first-child) {
  border-start-start-radius: 0 !important;
  border-end-start-radius: 0 !important;
  border-start-end-radius: 10px;
  border-end-end-radius: 10px;
}
.input-group > .form-control[type=email]:first-child:not(:last-child),
.input-group > .form-control[type=number]:first-child:not(:last-child),
.input-group > .form-control[type=tel]:first-child:not(:last-child),
.input-group > .form-control[type=url]:first-child:not(:last-child) {
  border-start-end-radius: 0 !important;
  border-end-end-radius: 0 !important;
  border-start-start-radius: 10px;
  border-end-start-radius: 10px;
}
.input-group > .form-control[type=email]:not(:first-child):not(:last-child),
.input-group > .form-control[type=number]:not(:first-child):not(:last-child),
.input-group > .form-control[type=tel]:not(:first-child):not(:last-child),
.input-group > .form-control[type=url]:not(:first-child):not(:last-child) {
  border-radius: 0 !important;
}

[dir=rtl] .input-group > .input-group-text:first-child + .form-control,
[dir=rtl] .input-group > .input-group-text:first-child + input {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

[dir=ltr] .input-group > .input-group-text:first-child + .form-control,
[dir=ltr] .input-group > .input-group-text:first-child + input {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

[dir=rtl] .form-control[type=email],
[dir=rtl] .form-control[type=number],
[dir=rtl] .form-control[type=tel],
[dir=rtl] .form-control[type=url] {
  text-align: right;
}
[dir=rtl] .select2-container--bootstrap-5 .select2-selection--single {
  background-position: left 0.75rem center;
  padding-left: 2.25rem;
  padding-right: 1rem;
}
[dir=rtl] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
}
[dir=rtl] table.dataTable thead th,
[dir=rtl] table.dataTable thead td,
[dir=rtl] table.dataTable tfoot th,
[dir=rtl] table.dataTable tfoot td {
  text-align: right;
}
[dir=rtl] table.dataTable tbody td {
  text-align: right;
}
[dir=rtl] table.dataTable tbody td.dt-empty {
  text-align: center;
}
[dir=rtl] table.dataTable thead th div.dt-column-header,
[dir=rtl] table.dataTable thead td div.dt-column-header,
[dir=rtl] table.dataTable tfoot th div.dt-column-footer,
[dir=rtl] table.dataTable tfoot td div.dt-column-footer {
  flex-direction: row-reverse;
}
[dir=rtl] div.dt-container div.dt-search input {
  margin-left: 0;
  margin-right: 0.5em;
}
[dir=rtl] div.dt-container div.dt-search {
  text-align: left;
}
[dir=rtl] div.dt-container div.dt-length label {
  text-align: right;
}
[dir=rtl] div.dt-container div.dt-length select {
  margin-left: 0.5em;
  margin-right: 0;
}
[dir=rtl] div.dt-container div.dt-layout-start > *:not(:last-child) {
  margin-right: 0;
  margin-left: 1em;
}
[dir=rtl] div.dt-container div.dt-layout-end > *:not(:first-child) {
  margin-left: 0;
  margin-right: 1em;
}
[dir=rtl] .pagination .page-item .page-link {
  border-radius: 0;
}
[dir=rtl] .pagination .page-item:first-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
[dir=rtl] .pagination .page-item:last-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
[dir=rtl] .alert {
  border-right: none;
  border-left-width: 4px;
  border-left-style: solid;
}
[dir=rtl] .sidebar-menu .nav-item > .nav-link.active::before {
  right: auto;
  left: 0;
  border-radius: 0 9999px 9999px 0;
}
[dir=rtl] .timeline {
  padding-inline-start: 0;
  padding-inline-end: 2rem;
}
[dir=rtl] .timeline::before {
  inset-inline-start: auto;
  inset-inline-end: 8px;
}
[dir=rtl] .timeline .timeline-item .timeline-dot {
  inset-inline-start: auto;
  inset-inline-end: calc(-2rem + 4px);
}
[dir=rtl] .dropdown-menu {
  text-align: right;
}
[dir=rtl] .modal-header .btn-close {
  margin: -0.5rem auto -0.5rem -0.5rem;
}
[dir=rtl] .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding-left: 0.5rem;
  padding-right: 0;
}

.sidebar .nav-sidebar .nav-link:hover {
  background-color: transparent;
}

.card.card-outline {
  border-top-width: 3px;
}

.small-box > .small-box-footer {
  background: transparent;
  border-top: 1px solid #F1F5F9;
}

.btn:focus {
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.15);
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 3px rgba(46, 120, 107, 0.1);
}

.dropdown-item:active {
  background-color: #2E786B;
}

.nav-tabs {
  border-bottom: 2px solid #F1F5F9;
}
.nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  color: #64748B;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-tabs .nav-link:hover {
  border-color: transparent;
  color: #2E786B;
}
.nav-tabs .nav-link.active {
  border-color: #2E786B;
  color: #2E786B;
  background: transparent;
}

.nav-pills .nav-link {
  border-radius: 10px;
  color: #64748B;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-pills .nav-link:hover {
  background: rgba(46, 120, 107, 0.04);
  color: #2E786B;
}
.nav-pills .nav-link.active {
  background: #2E786B;
  color: #FFFFFF;
}

.note-editor .note-toolbar .note-btn-group {
  margin-right: 0;
  margin-inline-end: 0.25rem;
}

.swal2-container {
  z-index: 9999 !important;
}

.os-scrollbar {
  --os-handle-bg: #CBD5E1;
  --os-handle-bg-hover: #94A3B8;
  --os-handle-bg-active: #2E786B;
}

.select2-container {
  z-index: 1000;
}

.select2-dropdown {
  z-index: 1001;
}

.text-truncate {
  min-width: 0;
}

.sticky-top {
  z-index: 1020;
}

.card {
  position: relative;
}

.overflow-visible {
  overflow: visible !important;
}

.status-counters h1, .status-counters h2, .status-counters h3, .status-counters h4, .status-counters h5, .status-counters h6,
.status-counters .h1, .status-counters .h2, .status-counters .h3, .status-counters .h4, .status-counters .h5, .status-counters .h6 {
  margin-bottom: 0;
}

@media print {
  body {
    background: white !important;
  }
  .app-sidebar,
  .app-header,
  .app-footer,
  .btn,
  .no-print {
    display: none !important;
  }
  .app-main {
    margin: 0 !important;
    padding: 0 !important;
  }
  .card {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }
}

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