/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

/* Select2 dropdown fixes: make results scrollable inside modal and ensure z-index */
.select2-container .select2-dropdown .select2-results {
  max-height: 250px; /* reasonable max height */
  overflow-y: auto;
}
.select2-container .select2-dropdown {
  z-index: 12050; /* ensure dropdown sits above modals/backdrops */
}

/* Make sure Select2 dropdowns are not clipped by parent containers */

/* Fix: Ensure Select2 dropdowns are not clipped by modal or card containers */
.modal,
.modal .modal-dialog,
.modal .modal-content,
.card,
.tab-content,
.materials-table {
  overflow: visible !important;
}

/* Stronger z-index for open dropdown to sit above cards, sidebars and modals */
.select2-container--open .select2-dropdown {
  z-index: 20000 !important;
}

/* If Select2 is rendered inline inside an element with transform/overflow,
   it can be clipped. Prefer initializing Select2 with `dropdownParent: $(document.body)`
   via JavaScript to append the dropdown to the document body (see guidance below). */

body {
  font-family: "Open Sans", sans-serif;
  background: #f6f9ff;
  color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

.errorlist {
  list-style: none;
  padding-left: 8px;
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

.select2-hidden-accessible {
  /* Keep the native select in the document flow for HTML5 constraint validation
     but visually hide it in an accessible way. Avoid display:none because
     browsers exclude such elements from validation. This mirrors Select2's
     recommended accessibility hiding. */
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.select2-container { box-sizing: border-box; }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 130px;
  }
}

.logo img {
  max-height: 26px;
  margin-right: 6px;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-add-company {
  font-size: 11px;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}
.sidebar-nav .nav-heading {
  font-size: 11px;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #4154f1;
  transition: 0.3;
  background: #f6f9ff;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #4154f1;
}

.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover {
  color: #4154f1;
  background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i {
  color: #4154f1;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 16px;
  margin-right: 10px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}
/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* three-dot-dropdown */
.dashboard .three-dot-dropdown {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .three-dot-dropdown .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .three-dot-dropdown .icon:hover,
.dashboard .three-dot-dropdown .icon:focus {
  color: #4154f1;
}

.dashboard .three-dot-dropdown .dropdown-header {
  padding: 8px 15px;
}

.dashboard .three-dot-dropdown .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .three-dot-dropdown .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .info-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .staff-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .equipment-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
  max-height: 450px; 
  overflow-y: auto;
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}
.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}
.profile .profile-card h3 {
  font-size: 18px;
}
.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}
.profile .profile-card .social-links a:hover {
  color: #012970;
}
.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}
.profile .profile-overview .card-title {
  color: #012970;
}
.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}
.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}
.profile .profile-edit img {
  max-width: 120px;
}

/* Filter dropdown */
.filter {
  position: absolute;
  right: 0px;
  top: 15px;
}
.filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}
.filter .icon:hover, .filter .icon:focus {
  color: #4154f1;
}
.filter .dropdown-header {
  padding: 8px 15px;
}
.filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}
.filter .dropdown-item {
  padding: 8px 15px;
}
.label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}


/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* New News / Updates / Tenders styles */
.news-list .news-item{ padding:12px 0; border-bottom:1px solid #f1f5ff; }
.news-list .news-icon{ width:44px; height:44px; border-radius:8px; background:rgba(65,84,241,0.08); display:flex; align-items:center; justify-content:center; color:#4154f1; font-size:18px; }
.news-list .news-title{ font-weight:700; color:#012970; display:block; }
.news-list .news-excerpt{ color:#6b7aa6; }
.news-meta{ margin-top:4px; }

.updates-list .update-item{ padding:10px 0; border-bottom:1px solid #f1f5ff; }
.updates-list .update-title{ font-weight:600; color:#012970; }

.tenders-list .tender-item{ padding:12px 0; border-bottom:1px solid #f1f5ff; }
.tenders-list .tender-title{ font-weight:700; color:#012970; }
.tenders-list .tender-meta{ color:#6b7aa6; }
.tenders-list .tender-item .btn{ padding:4px 8px; font-size:12px; }

/* small badge/text colors already provided by Bootstrap utility classes (text-success, text-warning, text-danger) */

/*--------------------------------------------------------------
# Enhanced Dashboard Card Styles
--------------------------------------------------------------*/
.dashboard .info-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.dashboard .info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(1,41,112,0.09);
}
.dashboard .info-card .big-number {
  font-size: 28px;
  font-weight: 800;
  color: #012970;
}
.dashboard .info-card .meta {
  color: #6b7aa6;
  font-size: 13px;
}
.dashboard .progress-sm {
  height: 6px;
  border-radius: 12px;
  background: rgba(65,84,241,0.12);
}
.dashboard .progress-sm .progress-bar {
  background: linear-gradient(90deg,#004aad 0%, #5b6ff2 100%);
}
.avatar-stack { display:flex; align-items:center; }
.avatar-stack img { width:30px; height:30px; border-radius:50%; margin-left:-8px; border:2px solid #fff; box-shadow:0 2px 6px rgba(0,0,0,0.06); }
.avatar-stack .avatar-icon { width:36px; height:36px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-weight:700; color:#fff; margin-left:-10px; border:2px solid #fff; box-shadow:0 2px 6px rgba(0,0,0,0.06); font-size:13px; }
.avatar-stack .bg-blue { background: #4154f1; }
.avatar-stack .bg-orange { background: #f42c00; }
.avatar-stack .bg-green { background: #2eca6a; }
.recent-sales .client-list { padding:0; margin:0; list-style:none; }
.recent-sales .client-list li { display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px solid #f1f5ff; }
.recent-sales .client-list .client-name { font-weight:600; color:#012970; }
.recent-sales .client-list .client-meta { color:#6b7aa6; font-size:13px }

/* Client list: logo, name and since date */
.recent-sales .client-list .client-logo {
  width:44px;
  height:44px;
  border-radius:8px;
  object-fit:cover;
  margin-right:12px;
  border:2px solid #fff;
  box-shadow:0 2px 6px rgba(0,0,0,0.06);
}
.recent-sales .client-list .client-since {
  color:#6b7aa6;
  font-size:13px;
  white-space:nowrap;
}
.recent-sales .client-list li .client-name {
  font-size:14px;
}

/* Client card styles */
.client-card {
  border: 1px solid #eef4ff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(1,41,112,0.04);
}
.client-card .card-body {
  padding: 12px 14px;
}
.client-card .client-role {
  color: #6b7aa6;
  margin-top: 2px;
}
.client-card .client-since {
  color: #9aa6d0;
  margin-top: 4px;
}

/* Pricing cards */
.pricing-card { border: 1px solid #eef4ff; border-radius: 8px; box-shadow: 0 8px 28px rgba(1,41,112,0.04); }
.pricing-card .card-body { padding: 16px; }
.pricing-card .pricing-header .price { color: #012970; }
.pricing-card .feature-list { color: #56658f; }
.pricing-card .feature-list li { padding: 6px 0; }
.pricing-card.featured { border: 1px solid rgba(65,84,241,0.18); background: linear-gradient(180deg, rgba(65,84,241,0.03), #fff); }
.pricing-card .btn { min-width: 120px; }

@media (max-width: 767px) {
  .pricing-card .price { font-size: 1.4rem; }
}

/* Emphasize package titles and wrap pricing as a big card */
.pricing-overall { border-radius: 8px; border: none; }
.pricing-overall .card-body { padding: 18px; }
.pricing-overall .card-title { font-size: 18px; font-weight:700; color:#012970; }
.package-title { font-size: 1.05rem; font-weight:800; color:#012970; letter-spacing:0.4px; margin-bottom:6px; }
.pricing-card.featured .package-title { color: #fff; background: linear-gradient(90deg,#004aad,#5b6ff2); display:inline-block; padding:6px 12px; border-radius:20px; }
.pricing-card .package-title { display:block; }
.pricing-card .price { margin-top:6px; margin-bottom:6px; }
.pricing-card .feature-list { color:#56658f; }
/*--------------------------------------------------------------
# Sticky header and scrollable tbody for Bootstrap tables
--------------------------------------------------------------*/
.scroll-table-wrapper {
  max-height: 450px;
  overflow-y: auto;
  width: 100%;
}
.scroll-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  margin-bottom: 0;
}
.scroll-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--bs-table-color, #212529) !important;
}
.scroll-table thead tr:first-child th {
  top: 0;
}
.scroll-table thead tr:nth-child(2) th {
  top: 41px; /* Adjust this value to match the height of your first header row */
  z-index: 3;
}
.scroll-table th, .scroll-table td {
  white-space: nowrap;
  vertical-align: middle;
  text-align: left;
  padding: 0.5rem;
}

/* Ensure table body has no background (override Bootstrap/table-light) */
.scroll-table.table-light tbody > tr,
.scroll-table.table-light tbody > tr > td,
.scroll-table tbody > tr,
.scroll-table tbody > tr > th,
.scroll-table tbody > tr > td {
  background-color: transparent !important;
  background: none !important;
}
