@charset "UTF-8";
.sidebar {
  width: 256px;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
}
.sidebar .sidebar-header {
  padding: 12px 20px;
  height: 64px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #E5E7EB;
}
.sidebar .sidebar-header .logotext {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #101828;
  cursor: pointer;
  margin-bottom: 0;
}
.sidebar .sidebar-header .logotext span {
  transition: 0.2s;
}
.sidebar .sidebar-menu {
  flex: 1;
  list-style: none;
  padding: 24px 12px;
  margin: 0;
}
.sidebar .sidebar-menu li {
  margin-bottom: 10px;
}
.sidebar .sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #4A5565;
  text-decoration: none;
  transition: 0.3s;
}
.sidebar .sidebar-menu li a span {
  transition: 0.2s;
}
.sidebar .sidebar-menu li a:hover, .sidebar .sidebar-menu li a.active {
  color: var(--sidebar-primary);
  background: var(--sidebar-primary-light);
}
.sidebar .sidebar-menu li a:hover svg, .sidebar .sidebar-menu li a.active svg {
  color: var(--primary);
}
.sidebar .sidebar-footer {
  padding: 15px;
  border-top: 1px solid #eee;
}
@media (max-width: 767px) {
  .sidebar .sidebar-footer {
    display: none;
  }
}
.sidebar .sidebar-footer .collapse-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: #F3F4F6;
  cursor: pointer;
}
.sidebar .sidebar-footer .collapse-btn span {
  transition: 0.2s;
}
.sidebar .sidebar-footer .collapse-btn:hover {
  background: #e2e8f0;
}
.sidebar {
  /* =========================
     COLLAPSED STATE
  ========================= */
}
.sidebar.collapsed {
  width: 80px;
}
.sidebar.collapsed .sidebar-header .logotext {
  justify-content: center;
}
.sidebar.collapsed .sidebar-header .logotext span {
  display: none;
}
.sidebar.collapsed .sidebar-menu li a {
  justify-content: center;
  padding: 12px;
}
.sidebar.collapsed .sidebar-menu li a span {
  display: none;
}
.sidebar.collapsed .sidebar-footer .collapse-btn span {
  display: none;
}
.sidebar.collapsed .sidebar-footer .collapse-btn img {
  transform: rotate(180deg);
  transition: 0.3s;
}
.sidebar {
  /* =========================
     MOBILE BEHAVIOR
  ========================= */
}
@media (max-width: 767px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 256px;
    height: 100%;
    z-index: 1100;
    transition: left 0.3s ease;
    will-change: left;
  }
  .sidebar.mobile-open {
    left: 0;
  }
  .sidebar.mobile-open .sidebar-header .logotext span,
  .sidebar.mobile-open .sidebar-menu span,
  .sidebar.mobile-open .collapse-btn span {
    display: inline !important;
  }
  .sidebar.mobile-open .sidebar-menu a {
    justify-content: flex-start;
    padding: 15px 20px;
  }
}

.mobile-menu-toggle {
  display: none;
}
@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: block;
    margin-right: auto;
  }
}

.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}
.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
  height: 64px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header {
    padding: 12px;
    height: unset;
    flex-direction: column-reverse;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 767px) {
  .header .headr-box {
    width: 100%;
    padding-top: 10px;
  }
}
.header .headr-box .header-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .header .headr-box .header-title {
    font-size: 18px;
  }
}
.header .header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .header .header-right {
    width: 100%;
  }
}
.header .header-right img {
  cursor: pointer;
}
.header .header-right .notification {
  position: relative;
}
.header .header-right .notification .notifications-bell {
  width: 20px;
}
.header .header-right .notification .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  background: #FB2C36;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header-right .theme-wrapper {
  position: relative;
}
.header .header-right .theme-wrapper .theme-toggle {
  width: 20px;
  cursor: pointer;
}
.header .header-right .theme-wrapper .theme-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  width: 200px;
  padding: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
  z-index: 1;
}
.header .header-right .theme-wrapper.active .theme-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header-right .theme-wrapper .theme-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.header .header-right .theme-wrapper .theme-item:hover {
  background: #F9FAFB;
}
.header .header-right .theme-wrapper .theme-item.active .color-box .check {
  display: block;
}
.header .header-right .theme-wrapper .theme-item .color-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header .header-right .theme-wrapper .theme-item .color-box .check {
  display: none;
  color: #fff;
  font-size: 16px;
}
.header .header-right .theme-wrapper .theme-item .color-box.blue {
  background: #2563EB;
}
.header .header-right .theme-wrapper .theme-item .color-box.orange {
  background: #F97316;
}
.header .header-right .theme-wrapper .theme-item .color-box.amber {
  background: #C69200;
}
.header .header-right .theme-wrapper .theme-item .theme-label {
  font-size: 16px;
  font-weight: 500;
  color: #1F2937;
}
.header .header-right .profile-wrapper {
  position: relative;
  display: inline-block;
}
.header .header-right .profile-wrapper * {
  font-family: "Rubik", sans-serif;
}
.header .header-right .profile-wrapper .user-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, #AD46FF 0%, #F6339A 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.header .header-right .profile-wrapper .profile-dropdown {
  position: absolute;
  top: 150%;
  right: 0;
  width: 214px;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: 0.25s ease;
  z-index: 1;
}
.header .header-right .profile-wrapper .profile-dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 10px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}
.header .header-right .profile-wrapper .profile-dropdown .profile-info {
  padding: 6px 10px;
}
.header .header-right .profile-wrapper .profile-dropdown .profile-info .profile-name {
  font-size: 13px;
  font-weight: 500;
  color: #2A3C47;
}
.header .header-right .profile-wrapper .profile-dropdown .profile-info .profile-email {
  font-size: 13px;
  color: #6B7280;
  margin-top: 5px;
}
.header .header-right .profile-wrapper .profile-dropdown .profile-menu {
  padding: 0;
}
.header .header-right .profile-wrapper .profile-dropdown .profile-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}
.header .header-right .profile-wrapper .profile-dropdown .profile-menu .menu-item img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.header .header-right .profile-wrapper .profile-dropdown .profile-menu .menu-item span {
  flex: 1;
  font-size: 13px;
  font-weight: 400;
  color: #2A3C47;
}
.header .header-right .profile-wrapper .profile-dropdown .profile-menu .menu-item:hover {
  background: #F9FAFB;
}
.header .header-right .profile-wrapper .profile-dropdown .profile-menu .menu-item.logout span {
  color: #DC2626;
}
.header .header-right .profile-wrapper .profile-dropdown .profile-menu .menu-item.logout:hover {
  background: #FEF2F2;
}
.header .header-right .profile-wrapper.active .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.table-tab {
  display: flex;
  padding: 4px 0;
  width: -moz-fit-content;
  border-bottom: 1px solid #E5E7EB;
}
.table-tab .tab {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .table-tab .tab {
    font-size: 13px;
  }
}
.table-tab .tab.active {
  color: #2A3C47;
}
.table-tab .tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 120px;
  background: var(--shape-primary);
  clip-path: polygon(7% 95%, 93% 95%, 100% 100%, 0% 100%);
}

.download-row {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
}
.download-row .download-btn {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--btn-primary);
  cursor: pointer;
  transition: all 0.25s ease;
}
.download-row .download-btn:hover {
  background: var(--btn-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.download-row .download-btn:active {
  transform: scale(0.97);
  box-shadow: none;
}
.download-row .download-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.2);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.table-wrapper {
  border-radius: 10px;
  background: #fff;
  overflow: auto;
  scrollbar-width: thin;
  border-bottom: 1px solid #e5e7eb;
}
.table-wrapper::-webkit-scrollbar {
  height: 6px;
}
.table-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.table-wrapper .custom-table {
  width: 100%;
  min-width: 1200px;
  border-collapse: collapse;
  border-spacing: 0 10px;
}
.table-wrapper .custom-table thead th {
  padding: 20px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #6A7282;
  background: #F9FAFB;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.6px;
}
.table-wrapper .custom-table tbody tr {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}
.table-wrapper .custom-table tbody tr:hover {
  background: #F9FAFB;
}
.table-wrapper .custom-table tbody tr td {
  padding: 14px 16px;
  font-size: 14px;
  color: #101828;
  white-space: nowrap;
  border: none;
  font-weight: 500;
}
@media (max-width: 767px) {
  .table-wrapper .custom-table tbody tr td {
    padding: 8px 16px;
  }
}
.table-wrapper .custom-table tbody tr td .status {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.table-wrapper .custom-table tbody tr td .status.completed {
  background: #DCFCE7;
  color: #008236;
}
.table-wrapper .custom-table tbody tr td .status.failed {
  background: #FFE2E2;
  color: #C10007;
}
.table-wrapper .custom-table tbody tr td .status.pending {
  background: #FEF9C2;
  color: #A65F00;
}
.table-wrapper .custom-table tbody tr td .info-badges {
  display: flex;
  gap: 8px;
}
.table-wrapper .custom-table tbody tr td .badge-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--badge-text);
  background: var(--badge-bg);
  position: relative;
  cursor: pointer;
}
.table-wrapper .custom-table tbody tr td .badge-circle::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: 0.2s;
}
.table-wrapper .custom-table tbody tr td .badge-circle::before {
  content: "";
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111827;
  opacity: 0;
  transition: 0.2s;
}
.table-wrapper .custom-table tbody tr td .badge-circle:hover::after, .table-wrapper .custom-table tbody tr td .badge-circle:hover::before {
  opacity: 1;
}
.table-wrapper .custom-table tbody tr td .action-wrapper {
  position: relative;
  display: inline-block;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .action-popup {
  position: absolute;
  top: -70px;
  right: 20px;
  width: 220px;
  padding: 10px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 9999;
}
.table-wrapper .custom-table tbody tr td .action-wrapper.active .action-popup {
  display: block;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  color: #111827;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item img {
  width: 18px;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item:hover {
  background: #F9FAFB;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item.delete {
  color: #DC2626;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item.delete:hover {
  background: #FEF2F2;
}
.table-wrapper .custom-table tbody tr td:first-child {
  border-radius: 8px 0 0 8px;
}
.table-wrapper .custom-table tbody tr td:last-child {
  border-radius: 0 8px 8px 0;
}
.table-wrapper .custom-table tbody tr td:nth-child(2) {
  color: var(--doc-link);
  cursor: pointer;
}
.table-wrapper .custom-table.drawertable {
  min-width: unset;
}
.table-wrapper .custom-table.drawertable td:nth-child(2) {
  color: #101828 !important;
}

.dataTables_scroll {
  border-radius: 10px;
  overflow: hidden;
  border-bottom: 1px solid #E5E7EB;
}
.dataTables_wrapper .dataTables_paginate {
  padding-bottom: 10px;
}

table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  border-bottom: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: -700px;
  width: 672px;
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  z-index: 1000;
}
@media (max-width: 767px) {
  .drawer {
    width: 80%;
  }
}
.drawer.active {
  right: 0;
}
.drawer .drawer-header {
  padding: 19px 20px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer .drawer-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 0;
}
.drawer .drawer-header .close-btn {
  cursor: pointer;
  font-size: 20px;
}
.drawer .drawer-body {
  padding: 20px;
  overflow-y: auto;
}
.drawer .drawer-body h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}
.drawer .drawer-body .detail-box {
  background: #F9FAFB;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 575px) {
  .drawer .drawer-body .detail-box {
    grid-template-columns: 1fr;
  }
}
.drawer .drawer-body .detail-box label {
  display: block;
  padding-bottom: 9px;
  font-size: 12px;
  text-transform: uppercase;
  color: #6A7282;
}
.drawer .drawer-body .detail-box p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  color: #101828;
}

.theme-blue {
  --sidebar-primary: #155DFC;
  --sidebar-primary-light: #EFF6FF;
  --doc-link: #155DFC;
  --badge-text: #1447E6;
  --badge-bg: #DBEAFE;
  --shape-primary: #1657EF;
  --btn-primary: #155DFC;
  --btn-primary-dark: #0E4CD3;
}

.theme-amber {
  --sidebar-primary: #926C00;
  --sidebar-primary-light: #FFF5D5;
  --badge-bg: #FFEDD5;
  --doc-link: #967411;
  --badge-text: #866508;
  --badge-bg: #FFF5D5;
  --shape-primary: #D9A300;
  --btn-primary: #C69200;
  --btn-primary-dark: #A97D00;
}

.theme-orange {
  --sidebar-primary: #F97316;
  --sidebar-primary-light: #FFF7ED;
  --badge-bg: #FFEDD5;
  --doc-link: #F97316;
  --badge-text: #C2410C;
  --badge-bg: #FFEDD5;
  --shape-primary: #F87316;
  --btn-primary: #F97316;
  --btn-primary-dark: #EA580C;
}

.table-tab {
  display: flex;
  padding: 4px 0;
  width: -moz-fit-content;
  border-bottom: 1px solid #E5E7EB;
}
.table-tab .tab {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .table-tab .tab {
    font-size: 13px;
  }
}
.table-tab .tab.active {
  color: #2A3C47;
}
.table-tab .tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 120px;
  background: var(--shape-primary);
  clip-path: polygon(7% 95%, 93% 95%, 100% 100%, 0% 100%);
}

.download-row {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
}
.download-row .download-btn {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--btn-primary);
  cursor: pointer;
  transition: all 0.25s ease;
}
.download-row .download-btn:hover {
  background: var(--btn-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.download-row .download-btn:active {
  transform: scale(0.97);
  box-shadow: none;
}
.download-row .download-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.2);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.table-wrapper {
  border-radius: 10px;
  background: #fff;
  overflow: auto;
  scrollbar-width: thin;
  border-bottom: 1px solid #e5e7eb;
}
.table-wrapper::-webkit-scrollbar {
  height: 6px;
}
.table-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.table-wrapper .custom-table {
  width: 100%;
  min-width: 1200px;
  border-collapse: collapse;
  border-spacing: 0 10px;
}
.table-wrapper .custom-table thead th {
  padding: 20px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #6A7282;
  background: #F9FAFB;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.6px;
}
.table-wrapper .custom-table tbody tr {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}
.table-wrapper .custom-table tbody tr:hover {
  background: #F9FAFB;
}
.table-wrapper .custom-table tbody tr td {
  padding: 14px 16px;
  font-size: 14px;
  color: #101828;
  white-space: nowrap;
  border: none;
  font-weight: 500;
}
@media (max-width: 767px) {
  .table-wrapper .custom-table tbody tr td {
    padding: 8px 16px;
  }
}
.table-wrapper .custom-table tbody tr td .status {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.table-wrapper .custom-table tbody tr td .status.completed {
  background: #DCFCE7;
  color: #008236;
}
.table-wrapper .custom-table tbody tr td .status.failed {
  background: #FFE2E2;
  color: #C10007;
}
.table-wrapper .custom-table tbody tr td .status.pending {
  background: #FEF9C2;
  color: #A65F00;
}
.table-wrapper .custom-table tbody tr td .info-badges {
  display: flex;
  gap: 8px;
}
.table-wrapper .custom-table tbody tr td .badge-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--badge-text);
  background: var(--badge-bg);
  position: relative;
  cursor: pointer;
}
.table-wrapper .custom-table tbody tr td .badge-circle::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: 0.2s;
}
.table-wrapper .custom-table tbody tr td .badge-circle::before {
  content: "";
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111827;
  opacity: 0;
  transition: 0.2s;
}
.table-wrapper .custom-table tbody tr td .badge-circle:hover::after, .table-wrapper .custom-table tbody tr td .badge-circle:hover::before {
  opacity: 1;
}
.table-wrapper .custom-table tbody tr td .action-wrapper {
  position: relative;
  display: inline-block;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .action-popup {
  position: absolute;
  top: -70px;
  right: 20px;
  width: 220px;
  padding: 10px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 9999;
}
.table-wrapper .custom-table tbody tr td .action-wrapper.active .action-popup {
  display: block;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  color: #111827;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item img {
  width: 18px;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item:hover {
  background: #F9FAFB;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item.delete {
  color: #DC2626;
}
.table-wrapper .custom-table tbody tr td .action-wrapper .popup-item.delete:hover {
  background: #FEF2F2;
}
.table-wrapper .custom-table tbody tr td:first-child {
  border-radius: 8px 0 0 8px;
}
.table-wrapper .custom-table tbody tr td:last-child {
  border-radius: 0 8px 8px 0;
}
.table-wrapper .custom-table tbody tr td:nth-child(2) {
  color: var(--doc-link);
  cursor: pointer;
}
.table-wrapper .custom-table.drawertable {
  min-width: unset;
}
.table-wrapper .custom-table.drawertable td:nth-child(2) {
  color: #101828 !important;
}

.dataTables_scroll {
  border-radius: 10px;
  overflow: hidden;
  border-bottom: 1px solid #E5E7EB;
}
.dataTables_wrapper .dataTables_paginate {
  padding-bottom: 10px;
}

table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  border-bottom: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: -700px;
  width: 672px;
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  z-index: 1000;
}
@media (max-width: 767px) {
  .drawer {
    width: 80%;
  }
}
.drawer.active {
  right: 0;
}
.drawer .drawer-header {
  padding: 19px 20px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer .drawer-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 0;
}
.drawer .drawer-header .close-btn {
  cursor: pointer;
  font-size: 20px;
}
.drawer .drawer-body {
  padding: 20px;
  overflow-y: auto;
}
.drawer .drawer-body h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}
.drawer .drawer-body .detail-box {
  background: #F9FAFB;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 575px) {
  .drawer .drawer-body .detail-box {
    grid-template-columns: 1fr;
  }
}
.drawer .drawer-body .detail-box label {
  display: block;
  padding-bottom: 9px;
  font-size: 12px;
  text-transform: uppercase;
  color: #6A7282;
}
.drawer .drawer-body .detail-box p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  color: #101828;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

.app {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 256px;
  flex-shrink: 0;
}

.main {
  flex: 1;
  min-width: 0;
  border-left: 1px solid #E5E7EB;
  display: flex;
  /* ✅ ADD */
  flex-direction: column;
  /* ✅ ADD */
  height: 100vh;
  /* ✅ ADD */
}
.main .content {
  flex: 1;
  overflow-y: auto;
  height: 0;
}
.main .content .content-body {
  padding: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .main .content .content-body {
    padding: 12px;
  }
}/*# sourceMappingURL=main.css.map */