/*
Template Name: Maxton Admin
Author: codervent
Email: codervent@gmail.com
File: main.scss
Table of Index
  --Genral
  --aligns
  --dropdown animation
  --header
  --mini sidebar
  --main content
  --page footer
  --Metis Menu
  --order offcanvas
  --utilities
  --alerts
  --authentication
  --switcher
*/
/* Genral*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
body {
  position: relative;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  letter-spacing: 0.5px;
  background: #0f1535;
  background-attachment: fixed;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  text-decoration: none;
}
input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
  opacity: 0.8 !important;
}
input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
  opacity: 0.8 !important;
}
/* aligns */
/* dropdown animation */
@keyframes animdropdown {
  from {
    transform: translate3d(0, 6px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/*header*/
.top-header .navbar {
  background: #1a1f47;
  backdrop-filter: blur(20px);
  height: 70px;
  position: fixed;
  left: 260px;
  right: 0;
  top: 0;
  padding: 0 1.5rem;
  z-index: 10;
  transition: ease-out 0.3s;
  box-shadow: 0 4px 20px rgba(15, 21, 53, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-header .navbar .search-bar {
  width: auto;
  cursor: pointer;
}
.top-header .navbar .search-bar .search-control:focus, .top-header .navbar .search-bar .mobile-search-control:focus {
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.top-header .navbar .search-bar .search-close {
  display: none;
}
.top-header .navbar .search-bar .search-popup {
  display: none;
  position: absolute;
  width: auto;
  height: auto;
  top: 54px;
  left: 0;
  right: 0;
  background: #1a1f47;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(15, 21, 53, 0.8);
  animation: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 animdropdown;
}
.top-header .navbar .search-bar .search-popup .card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  margin-bottom: 0;
  background: transparent;
}
.top-header .navbar .search-bar .search-popup .search-content {
  position: relative;
  height: 24.3rem;
}
.top-header .navbar .search-bar .search-popup .search-title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.top-header .navbar .search-bar .search-popup .kewords {
  font-size: 12.5px;
  font-weight: 500;
  color: #ffffff;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  gap: 0.5rem;
}
.top-header .navbar .search-bar .search-popup .kewords:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
}
.top-header .navbar .search-bar .search-popup .search-list-item {
  padding: 0.4rem 0.7rem;
  border-radius: 0.25rem;
  transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.top-header .navbar .search-bar .search-popup .search-list-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}
.top-header .navbar .search-bar .search-popup .search-list-item .list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.top-header .navbar .search-bar .search-popup .search-list-item .search-list-title {
  font-size: 14px;
  color: #ffffff;
}
.top-header .navbar .nav-item {
  height: 70px;
  display: flex;
  align-items: center;
}
.top-header .navbar .nav-item .mega-menu {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #1a1f47;
  border-radius: 1rem;
}
.top-header .navbar .nav-item .mega-menu::after {
  display: none;
}
.top-header .navbar .nav-item .mega-menu .mega-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.top-header .navbar .nav-item .mega-menu .card {
  cursor: pointer;
  transition: 0.2s all;
  background: rgba(255, 255, 255, 0.1);
}
.top-header .navbar .nav-item .mega-menu .card:hover {
  background: rgba(255, 255, 255, 0.2);
}
.top-header .navbar .nav-item .dropdown-apps {
  width: 320px;
  box-shadow: 0 0.5rem 1rem rgba(15, 21, 53, 0.8) !important;
  border-radius: 1rem;
  background: #1a1f47;
}
.top-header .navbar .nav-item .dropdown-apps .app-name {
  font-size: 14px;
  color: #ffffff;
}
.top-header .navbar .nav-item .dropdown-apps .app-wrapper {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0rem;
  cursor: pointer;
}
.top-header .navbar .nav-item .dropdown-apps .app-wrapper:hover {
  background: rgba(255, 255, 255, 0.15);
}
.top-header .navbar .nav-item .dropdown-notify {
  width: 360px;
  border-radius: 1rem;
  background: #1a1f47;
}
.top-header .navbar .nav-item .dropdown-notify .option {
  font-size: 1rem;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-header .navbar .nav-item .dropdown-notify .option:hover {
  background: rgba(255, 255, 255, 0.2);
}
.top-header .navbar .nav-item .dropdown-notify .notiy-title {
  font-size: 1rem;
  color: #ffffff;
}
.top-header .navbar .nav-item .dropdown-notify .dropdown-option {
  font-size: 14px;
}
.top-header .navbar .nav-item .dropdown-notify .notify-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.top-header .navbar .nav-item .dropdown-notify .notify-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 400;
  width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-header .navbar .nav-item .dropdown-notify .notify-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-top: 0.2rem;
}
.top-header .navbar .nav-item .dropdown-notify .user-wrapper, .top-header .navbar .nav-item .dropdown-notify .notify-close {
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}
.top-header .navbar .nav-item .dropdown-notify .notify-close {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  visibility: hidden;
}
.top-header .navbar .nav-item .dropdown-notify .notify-list {
  position: relative;
  height: 390px;
}
.top-header .navbar .nav-item .dropdown-notify .dropdown-item:hover .notify-close {
  visibility: visible;
}
.top-header .navbar .nav-item .dropdown-user {
  width: 260px;
  border-radius: 1rem;
  background: #1a1f47;
}
.top-header .navbar .nav-item .badge-notify {
  position: absolute;
  top: 2px;
  right: 3px;
  font-size: 12px;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f01414;
}
.top-header .navbar .dropdown-menu {
  border-radius: 1rem;
  border: 0;
  background: #1a1f47;
  animation: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 animdropdown;
}
.top-header .navbar .dropdown-menu::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #1a1f47;
  position: absolute;
  top: -6px;
  right: 16px;
  transform: rotate(45deg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.top-header .btn-toggle a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
}
.top-header .btn-toggle a:hover, .top-header .btn-toggle a:focus {
  background: rgba(255, 255, 255, 0.15);
}
.top-header .nav-right-links .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
}
.top-header .nav-right-links .nav-link:hover, .top-header .nav-right-links .nav-link:focus {
  background: rgba(255, 255, 255, 0.15);
}
.dropdown-menu {
  border-radius: 1rem;
  border: 0;
  background: #1a1f47;
  box-shadow: 0 0.5rem 1rem rgba(15, 21, 53, 0.8) !important;
}
/*profil bilgileri*/
.ios-blur {
    position: relative;
    background: #252c59;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px !important;
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(15, 21, 53, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}
.ios-blur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 21, 53, 0.3);
    backdrop-filter: blur(10px);
    z-index: -1;
}
.ios-blur h5,
.ios-blur h6,
.ios-blur p {
    color: white !important;
    text-shadow: 0 2px 4px rgba(15, 21, 53, 0.7);
}
.ios-blur .text-muted,
.ios-blur small {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 3px rgba(15, 21, 53, 0.6);
}
.ios-blur .border-primary {
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 4px 12px rgba(15, 21, 53, 0.6);
}
.ios-blur .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}
.ios-blur .avatar {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.ios-blur .avatar i {
    color: white !important;
}
/*profil bilgileri*/
/* sidebar wrapper */
.sidebar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: #141836;
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 12;
  transition: ease-out 0.3s;
  box-shadow: 0 8px 32px rgba(15, 21, 53, 0.8);
}
.sidebar-wrapper .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 260px;
  height: 70px;
  padding: 0 1rem;
  gap: 0.5rem;
  z-index: 1;
  position: fixed;
  top: 0;
  backdrop-filter: blur(20px);
  transition: ease-out 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1f47;
}
.sidebar-wrapper .sidebar-header .logo-img {
  width: 45px;
}
.sidebar-wrapper .sidebar-header .logo-name h5 {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 600;
  color: #ffffff;
}
.sidebar-wrapper .sidebar-header .sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
  display: none;
  cursor: pointer;
}
.sidebar-wrapper .sidebar-header .sidebar-close:hover, .sidebar-wrapper .sidebar-header .sidebar-close:focus {
  background: rgba(255, 255, 255, 0.15);
}
.sidebar-wrapper .sidebar-nav {
  margin-top: 70px;
  height: 100%;
  background: transparent;
}
.sidebar-wrapper .sidebar-nav ul {
  padding: 10px;
  margin: 0;
  list-style: none;
  background: 0 0;
}
.sidebar-wrapper .sidebar-nav .metismenu {
  background: 0 0;
  display: flex;
  flex-direction: column;
}
.sidebar-wrapper .sidebar-nav .metismenu li + li {
  margin-top: 5px;
}
.sidebar-wrapper .sidebar-nav .metismenu li:first-child {
  margin-top: 5px;
}
.sidebar-wrapper .sidebar-nav .metismenu li:last-child {
  margin-bottom: 5px;
}
.sidebar-wrapper .sidebar-nav .metismenu > li {
  display: flex;
  flex-direction: column;
  position: relative;
}
.sidebar-wrapper .sidebar-nav .metismenu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 8px 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  outline-width: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  letter-spacing: 0.5px;
  border-radius: 0.5rem;
  transition: all 0.3s ease-out;
  margin-bottom: 2px;
}
.sidebar-wrapper .sidebar-nav .metismenu a .parent-icon {
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
}
.sidebar-wrapper .sidebar-nav .metismenu a .menu-title {
  margin-left: 10px;
}
.sidebar-wrapper .sidebar-nav .metismenu a:active {
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}
.sidebar-wrapper .sidebar-nav .metismenu a:focus {
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}
.sidebar-wrapper .sidebar-nav .metismenu a:hover {
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 500;
  transform: translateX(4px);
}
.sidebar-wrapper .sidebar-nav .metismenu ul {
  background: #252c59;
  padding: 0;
  border-radius: 0.5rem;
  margin-top: 5px;
}
.sidebar-wrapper .sidebar-nav .metismenu ul a {
  padding: 6px 15px 6px 20px;
  font-size: 15px;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
}
.sidebar-wrapper .sidebar-nav .metismenu ul a i {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.8);
}
.sidebar-wrapper .sidebar-nav .metismenu ul ul a {
  padding: 8px 15px 8px 30px;
}
.sidebar-wrapper .sidebar-nav .metismenu ul ul ul a {
  padding: 8px 15px 8px 45px;
}
.sidebar-wrapper .sidebar-nav .metismenu .mm-active > a {
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 600;
  border-left: 3px solid #ffffff;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}
.sidebar-wrapper .menu-label {
  padding: 10px 16px 10px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.toggled .top-header .navbar {
  left: 70px;
}
.toggled .main-wrapper {
  margin-left: 70px;
}
.toggled .page-footer {
  left: 70px;
}
@media screen and (min-width: 1199px) {
  body.toggled .sidebar-wrapper:hover {
    box-shadow: 0 0.5rem 1rem rgba(15, 21, 53, 0.8);
  }
  body.toggled .sidebar-wrapper:hover .sidebar-header .sidebar-close {
    display: flex;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper {
    width: 70px;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
    width: 70px;
    justify-content: center;
    width: 70px;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .logo-name {
    display: none;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .toggle-icon {
    display: none;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu a {
    justify-content: center;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .menu-title {
    display: none;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li ul {
    display: none;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li.menu-label {
    display: none;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .has-arrow:after {
    display: none;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-bottom {
    width: 70px;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-bottom .dropdown-laungauge {
    display: none;
  }
  body.toggled:not(.sidebar-hovered) .sidebar-bottom .dropdown-help {
    display: none;
  }
}
.chip {
  display: inline-block;
  height: 32px;
  padding: 0 12px;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transition: all 0.3s linear;
  box-shadow: none;
}
.chip img {
  float: left;
  width: 32px;
  height: 32px;
  margin: 0 8px 0 -12px;
  border-radius: 50%;
}
.chip.chip-md {
  height: 42px;
  line-height: 42px;
  border-radius: 21px;
}
.chip.chip-md img {
  height: 42px;
  width: 42px;
}
/* main content */
.main-wrapper {
  margin-top: 70px;
  padding-bottom: 20px;
  margin-left: 260px;
  transition: ease-out 0.3s;
}
.main-wrapper .main-content {
  padding: 1.5rem;
}
.main-wrapper .main-content .breadcrumb-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  border-right: 1.5px solid rgba(255, 255, 255, 0.3);
  padding-right: 1rem;
  margin-right: 1rem;
}
.main-wrapper .main-content .page-breadcrumb .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}
.main-wrapper .main-content .page-breadcrumb .breadcrumb li.breadcrumb-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.main-wrapper .main-content .page-breadcrumb .breadcrumb li.breadcrumb-item.active {
  color: #ffffff;
  font-weight: 500;
}
.main-wrapper .main-content .page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  font-family: "Material Icons Outlined";
  content: "\e88a";
  color: rgba(255, 255, 255, 0.6);
}
.main-wrapper .main-content .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border-radius: 0.5rem;
}
.main-wrapper .main-content .badge-icon .badge-number {
  width: 20px;
  height: 20px;
  background-color: #ff1717;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  padding: 1px;
}
.main-wrapper .main-content .sharelink {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
}
.main-wrapper .main-content .sharelink:hover, .main-wrapper .main-content .sharelink:focus {
  background: rgba(255, 255, 255, 0.15);
}
.main-wrapper .main-content .options {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
  width: 30px;
  height: 30px;
}
.main-wrapper .main-content .options:hover, .main-wrapper .main-content .options:focus {
  background: rgba(255, 255, 255, 0.15);
}
.main-wrapper .main-content .dropdown-menu-share {
  width: -moz-max-content;
  width: max-content;
  background: #1a1f47;
}
.main-wrapper .main-content .vertical-pills button {
  width: 100%;
  text-align: left;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.main-wrapper .main-content .vertical-pills .nav-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}
.main-wrapper .main-content .vertical-pills .nav-link:last-child {
  border-bottom: 0px solid rgba(255, 255, 255, 0.2);
}
.main-wrapper .main-content .vertical-pills .nav-link.active {
  color: #ffffff;
  background: #252c59;
}
.main-wrapper .main-content .customer-notes {
  height: 480px;
  position: relative;
  overflow-y: scroll;
}
.main-wrapper .main-content .lable-table {
  text-transform: uppercase;
  padding: 1px 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ===== TABLE STYLES START ===== */
/* Table Improvements - Deep Ocean Theme Colors */
.table {
  margin-bottom: 0;
  color: #e8eaf6;
  background: #1e2856;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.3);
  box-shadow: 0 12px 40px rgba(30, 40, 86, 0.7);
}

.table th {
  border-top: none;
  border-bottom: 2px solid rgba(79, 70, 229, 0.5);
  font-weight: 700;
  color: #f8fafc;
  background: #1f254e;
  padding: 1rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.table td {
  padding: 0.875rem;
  border-top: 1px solid rgba(79, 70, 229, 0.25);
  vertical-align: middle;
  color: #e2e8f0;
  background: #1e2856;
  border-bottom: 1px solid rgba(79, 70, 229, 0.15);
}

.table-striped tbody tr:nth-of-type(odd) {
  background: linear-gradient(135deg, #262f65 0%, #2a3470 100%);
}

.table-hover tbody tr:hover {
  background: linear-gradient(135deg, #3730a3 0%, #4338ca 100%);
  transform: scale(1.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  color: #ffffff;
}

/* Data Table Improvements - Deep Ocean Theme Colors */
.dataTables_wrapper {
  padding-bottom: 50px;
  color: #e8eaf6;
  background: rgba(30, 40, 86, 0.3);
  border-radius: 0.75rem;
  backdrop-filter: blur(20px);
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
  color: #f1f5f9;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
  border: 2px solid rgba(79, 70, 229, 0.4);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: linear-gradient(135deg, #1e2856 0%, #262f65 100%);
  color: #f8fafc;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dataTables_wrapper .dataTables_filter input:focus {
  border-color: rgba(79, 70, 229, 0.8);
  box-shadow: 0 0 0 0.3rem rgba(79, 70, 229, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #262f65 0%, #2a3470 100%);
  outline: none;
}

.dataTables_wrapper .dataTables_info {
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0 1rem;
  margin-bottom: 30px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0.75rem 1rem;
  margin: 0 0.25rem;
  border: 2px solid rgba(79, 70, 229, 0.4);
  border-radius: 0.75rem;
  color: #f8fafc;
  background: linear-gradient(135deg, #1e2856 0%, #262f65 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
  color: #ffffff;
  border-color: rgba(79, 70, 229, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
  color: #ffffff;
  border-color: rgba(79, 70, 229, 1);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.5);
  transform: translateY(-1px);
}

/* Fix horizontal scrollbar issues */
.table-responsive {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

/* Ensure tables don't create unnecessary horizontal scroll */
.table {
  width: 100% !important;
  table-layout: auto !important;
}

.table td, .table th {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* Fix for DataTables */
.dataTables_wrapper {
  overflow-x: auto;
}

.dataTables_wrapper .dataTables_scroll {
  overflow-x: auto;
}

/* Responsive table improvements */
@media (max-width: 768px) {
  .table-responsive {
    border: none;
    margin-bottom: 0;
  }
  .table {
    font-size: 0.875rem;
  }
  .table td, .table th {
    padding: 0.5rem 0.25rem;
    max-width: 150px;
  }
}

/* FINAL OVERRIDE - Maximum Priority CSS Rules */
/* Force DataTables search input to use dark navy theme */
.dataTables_filter input,
.dataTables_filter input[type="search"],
#DataTables_Table_0_filter input,
#DataTables_Table_0_filter input[type="search"],
div[id*="DataTables_Table_"] input[type="search"],
div[class*="dataTables_filter"] input[type="search"] {
  background: #2a3057 !important;
  background-color: #2a3057 !important;
  border: 1px solid rgba(58, 66, 115, 0.6) !important;
  border-color: rgba(58, 66, 115, 0.6) !important;
  color: #ffffff !important;
  border-radius: 0.5rem !important;
  padding: 0.375rem 0.75rem !important;
  backdrop-filter: blur(15px) !important;
}

.dataTables_filter input:focus,
.dataTables_filter input[type="search"]:focus,
#DataTables_Table_0_filter input:focus,
#DataTables_Table_0_filter input[type="search"]:focus {
  background: #323967 !important;
  background-color: #323967 !important;
  border-color: rgba(58, 66, 115, 0.8) !important;
  box-shadow: 0 0 0 0.2rem rgba(58, 66, 115, 0.3) !important;
  outline: none !important;
}

.main-wrapper .main-content .customer-table table thead {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  background: #3a4273;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.main-wrapper .main-content .customer-table table thead th {
  padding: 12px 8px;
  color: #ffffff;
  border-top: none;
}

.main-wrapper .main-content .customer-table table .customer-name {
  color: #ffffff;
  font-weight: 500;
}

.main-wrapper .main-content .customer-table table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-wrapper .main-content .customer-table table tbody tr:hover {
  background: #3a4273;
}

.main-wrapper .main-content .customer-table table tbody td {
  padding: 12px 8px;
  vertical-align: middle;
  color: #ffffff;
}

.main-wrapper .main-content .product-table table thead {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 400;
  background: #3a4273;
}

.main-wrapper .main-content .product-table table .product-category {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.main-wrapper .main-content .product-table table .product-title {
  font-size: 0.97rem;
  color: #ffffff;
}

.main-wrapper .main-content .product-table table .product-tags {
  max-width: 220px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.main-wrapper .main-content .product-table table .product-tags .btn-tags {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 2px 10px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
}

.main-wrapper .main-content .product-table table .product-rating {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 5px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  color: #ffffff;
}


/* ===== TABLE STYLES END ===== */

.separator {
  display: flex;
  align-items: center;
}
.separator .line {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
}
.separator p {
  padding: 0 1rem;
  color: #ffffff;
}
.review-desc {
  width: 400px;
}
.auth-cover-left, .auth-cover-right {
  display: flex;
  background: #141836;
  min-height: 100vh;
}
.auth-cover-right {
  background: #141836;
}
.auth-social-login {
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: start;
}
.order-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
.order-delete:hover, .order-delete:focus {
  background: rgba(255, 255, 255, 0.15);
}
/*page footer*/
.page-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141836;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  height: 40px;
  position: absolute;
  left: 260px;
  right: 0;
  bottom: 0;
  transition: ease-out 0.3s;
  color: #ffffff;
}
.user-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  right: -50px;
  top: 16px;
  background: #1a1f47;
}
/* order offcanvas */
.order-title {
  font-size: 15px;
  color: #ffffff;
}
/* utilities */
.primaery-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
}
.primaery-menu-close:hover, .primaery-menu-close:focus {
  background: rgba(255, 255, 255, 0.15);
}
.dropdown-toggle-nocaret:after {
  display: none;
}
.dropup .dropdown-toggle-nocaret:after {
  display: none;
}
.w-260 {
  width: 300px !important;
}
.h-70 {
  height: 70px !important;
}
.h-370 {
  height: 370px;
}
.f-14 {
  font-size: 14px;
}
.raised {
  box-shadow: 0px 3px 1px -2px rgba(15, 21, 53, 0.6), 0px 2px 2px 0px rgba(15, 21, 53, 0.4), 0px 1px 5px 0px rgba(15, 21, 53, 0.3);
}
.wh-42 {
  width: 42px;
  height: 42px;
}
.wh-48 {
  width: 48px;
  height: 48px;
}
.wh-64 {
  width: 64px;
  height: 64px;
}
.wh-120 {
  width: 120px;
  height: 120px;
}
.font-22 {
  font-size: 45px;
}
.font-text1 {
  font-size: 0.8rem;
}
.font-text2 {
  font-size: 0.7rem;
}
.piechart-legend {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
}
.cursor-pointer {
  cursor: pointer;
}
.theme-icons {
  background: rgba(255, 255, 255, 0.1);
}
.user-list {
  position: relative;
  height: 400px;
}
.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.error {
  color: #fe1010;
}
.dash-lable {
  font-size: 14px;
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.1);
  width: -moz-max-content;
  width: max-content;
  color: #ffffff;
}
form select.error,
form textarea.error,
form input.error,
form input.error:focus,
form textarea.error:focus,
form select.error:focus {
  border-color: #fe1010 !important;
}
/* alerts */
.alert-border-primary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid #3a4273;
  background: rgba(58, 66, 115, 0.1);
  color: #ffffff;
}
.alert-border-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid #6c757d;
  background: rgba(108, 117, 125, 0.1);
  color: #ffffff;
}
.alert-border-success {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid #11998e;
  background: rgba(17, 153, 142, 0.1);
  color: #ffffff;
}
.alert-border-danger {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid #fc185a;
  background: rgba(252, 24, 90, 0.1);
  color: #ffffff;
}
.alert-border-warning {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid #fbb513;
  background: rgba(251, 181, 19, 0.1);
  color: #ffffff;
}
.alert-border-info {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
  color: #ffffff;
}
.alert-border-dark {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid #0f1535;
  background: rgba(15, 21, 53, 0.1);
  color: #ffffff;
}
.bg-error {
  background: #0f1535;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.error-title {
  font-size: 140px;
  line-height: 140px;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
}
.error-sub-title {
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  color: #ffffff;
}
.contacts-social a {
  font-size: 16px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
}
.chart-container1 {
  position: relative;
  height: 350px;
}
.chart-container2 {
  position: relative;
  height: 138px;
}
.gmaps,
.gmaps-panaroma {
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
/* authentication */
.border-gradient-1 {
  border: 1px solid #3a4273;
}
.auth-basic-wrapper {
  width: auto;
  height: auto;
}
@media (min-width: 1024px) {
  .auth-basic-wrapper {
    height: 100vh;
  }
}
.bg-login, .bg-reset-password, .bg-forgot-password, .bg-register {
  background: #0f1535;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-register {
  background: #141836;
}
.bg-forgot-password {
  background: #1a1f47;
}
.bg-reset-password {
  background: #252c59;
}
/* Dashboard Improvements - Dark Navy Theme Colors */
.card {
  border: 1px solid rgba(58, 66, 115, 0.6);
  border-radius: 0.5rem;
  background: #1f2548;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(15, 21, 53, 0.8);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 21, 53, 0.9);
  background: #252c59;
}
.card-header {
  background: #1a1f47;
  border-bottom: 1px solid rgba(58, 66, 115, 0.6);
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: 0.5rem 0.5rem 0 0;
}
.card-body {
  padding: 1.25rem;
  background: #1f2548;
  color: #ffffff;
}
/* Button Improvements - Theme Colors */
.btn {
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.btn-primary {
  background: #3a4273;
  border-color: transparent;
  color: #ffffff;
}
.btn-primary:hover {
  background: #434a7c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(58, 66, 115, 0.4);
}
.btn-success {
  background: #11998e;
  border-color: transparent;
  color: #ffffff;
}
.btn-success:hover {
  background: #0e8078;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 153, 142, 0.4);
}
.btn-warning {
  background: #fbb513;
  border-color: transparent;
  color: #ffffff;
}
.btn-warning:hover {
  background: #e2a30f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 181, 19, 0.4);
}
.btn-danger {
  background: #fc185a;
  border-color: transparent;
  color: #ffffff;
}
.btn-danger:hover {
  background: #e31551;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 24, 90, 0.4);
}
/* Fix for search button */
.btn:not(.btn-primary):not(.btn-success):not(.btn-warning):not(.btn-danger) {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.btn:not(.btn-primary):not(.btn-success):not(.btn-warning):not(.btn-danger):hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
/* Form Improvements - Dark Navy Theme Colors */
.form-control {
  border: 1px solid rgba(58, 66, 115, 0.6);
  border-radius: 0.5rem;
  background: #1f2548;
  color: #ffffff;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
}
.form-control:focus {
  border-color: rgba(58, 66, 115, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(58, 66, 115, 0.5);
  background: #252c59;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form-select {
  border: 1px solid rgba(58, 66, 115, 0.6);
  border-radius: 0.5rem;
  background: #1f2548;
  color: #ffffff;
  font-size: 0.875rem;
  backdrop-filter: blur(15px);
}
.form-select:focus {
  border-color: rgba(58, 66, 115, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(58, 66, 115, 0.5);
  background: #252c59;
}
.form-select option {
  background: #1f2548;
  color: #ffffff;
}
/* Badge Improvements */
.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
}
.badge-primary {
  background: #3a4273;
}
.badge-success {
  background: #11998e;
}
.badge-warning {
  background: #fbb513;
  color: #fff;
}
.badge-danger {
  background: #fc185a;
}
.badge-info {
  background: #0dcaf0;
}
/* Text Color Improvements */
.text-primary {
  color: #3a4273 !important;
}
.text-success {
  color: #11998e !important;
}
.text-warning {
  color: #fbb513 !important;
}
.text-danger {
  color: #fc185a !important;
}
.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}
/* Force all DataTables inputs to use dark navy theme */
div[id*="DataTables_Table_"] input,
div[class*="dataTables_"] input,
.dataTables_wrapper input {
  background: #2a3057 !important;
  border: 1px solid rgba(58, 66, 115, 0.6) !important;
  color: #ffffff !important;
  border-radius: 0.5rem !important;
  backdrop-filter: blur(15px) !important;
}
div[id*="DataTables_Table_"] input:focus,
div[class*="dataTables_"] input:focus,
.dataTables_wrapper input:focus {
  background: #323967 !important;
  border-color: rgba(58, 66, 115, 0.8) !important;
  box-shadow: 0 0 0 0.2rem rgba(58, 66, 115, 0.3) !important;
  outline: none !important;
}
/* Ultra specific CSS to override Bootstrap defaults */
button, input, optgroup, select, textarea {
  background: #2a3057 !important;
  border: 1px solid rgba(58, 66, 115, 0.6) !important;
  color: #ffffff !important;
  border-radius: 0.5rem !important;
}
/* Even more specific for DataTables */
.dataTables_filter label input[type="search"] {
  background: #2a3057 !important;
  background-color: #2a3057 !important;
  border: 1px solid rgba(58, 66, 115, 0.6) !important;
  color: #ffffff !important;
  border-radius: 0.5rem !important;
  padding: 0.375rem 0.75rem !important;
}
/* Override any white background */
input[type="search"]:not(.btn) {
  background: #2a3057 !important;
  background-color: #2a3057 !important;
}
/* Fix for all input fields - Dark Navy Theme */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select {
  background: #2a3057 !important;
  border: 1px solid rgba(58, 66, 115, 0.6) !important;
  color: #ffffff !important;
  border-radius: 0.5rem !important;
  backdrop-filter: blur(15px) !important;
}
/* Fix for "Bul" button and similar elements */
input[type="submit"],
input[type="button"],
button:not(.btn-primary):not(.btn-success):not(.btn-warning):not(.btn-danger) {
  background: #2a3057 !important;
  border: 1px solid rgba(58, 66, 115, 0.6) !important;
  color: #ffffff !important;
  border-radius: 0.5rem !important;
  backdrop-filter: blur(15px) !important;
}
/* Status Badges */
.status-active {
  background: #11998e;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.status-inactive {
  background: #fc185a;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.status-pending {
  background: #fbb513;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.action-buttons .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
}
.btn-edit {
  background: #fbb513;
  border-color: transparent;
  color: #fff;
}
.btn-edit:hover {
  background: #e2a30f;
  border-color: transparent;
  color: #fff;
}
.btn-delete {
  background: #fc185a;
  border-color: transparent;
  color: #fff;
}
.btn-delete:hover {
  background: #e31551;
  border-color: transparent;
  color: #fff;
}
.btn-view {
  background: #0dcaf0;
  border-color: transparent;
  color: #fff;
}
.btn-view:hover {
  background: #0bb5d8;
  border-color: transparent;
  color: #fff;
}
/* Modal Improvements */
.modal-header {
  background: #3a4273;
  color: #fff;
  border-bottom: none;
}
.modal-header .btn-close {
  filter: invert(1);
}
.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #1f2548;
}
.modal-content {
  background: #1f2548;
  border: 1px solid rgba(58, 66, 115, 0.6);
}
.modal-body {
  background: #1f2548;
  color: #ffffff;
}
/* Alert Improvements */
.alert {
  border: none;
  border-radius: 0.35rem;
  font-size: 0.875rem;
}
.alert-success {
  background: rgba(17, 153, 142, 0.2);
  color: #11998e;
  border-left: 4px solid #11998e;
}
.alert-danger {
  background: rgba(252, 24, 90, 0.2);
  color: #fc185a;
  border-left: 4px solid #fc185a;
}
.alert-warning {
  background: rgba(251, 181, 19, 0.2);
  color: #fbb513;
  border-left: 4px solid #fbb513;
}
.alert-info {
  background: rgba(13, 202, 240, 0.2);
  color: #0dcaf0;
  border-left: 4px solid #0dcaf0;
}
/* Progress Bar Improvements */
.progress {
  height: 0.75rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.1);
}
.progress-bar {
  border-radius: 0.35rem;
  background: #3a4273;
}
/* Tooltip Improvements */
.tooltip {
  font-size: 0.75rem;
}
.tooltip-inner {
  background: #1a1f47;
  border-radius: 0.35rem;
  padding: 0.5rem 0.75rem;
}
/* Loading Spinner */
.spinner-border {
  color: #3a4273;
}
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}
/* Custom Utilities */
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.border-left-primary {
  border-left: 4px solid #3a4273 !important;
}
.border-left-success {
  border-left: 4px solid #11998e !important;
}
.border-left-warning {
  border-left: 4px solid #fbb513 !important;
}
.border-left-danger {
  border-left: 4px solid #fc185a !important;
}
/* Dashboard Specific Improvements */
.dashboard-stats .card {
  border-left: 4px solid #3a4273;
  transition: all 0.3s ease;
}
.dashboard-stats .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 2rem 0 rgba(15, 21, 53, 0.6);
}
.dashboard-stats .card-body {
  padding: 1.5rem;
}
.dashboard-stats .text-primary {
  color: #3a4273 !important;
}
.dashboard-stats .text-success {
  color: #11998e !important;
}
.dashboard-stats .text-warning {
  color: #fbb513 !important;
}
.dashboard-stats .text-danger {
  color: #fc185a !important;
}
/* Responsive Text */
@media (max-width: 576px) {
  .main-wrapper .main-content {
    padding: 1% !important;
  }
  .container-fluid {
    padding: 1% !important;
  }
  .main-wrapper .main-content .breadcrumb-title {
    font-size: 20px;
  }
  .card-body {
    padding: 0.75rem;
  }
  .table-responsive {
    font-size: 0.875rem;
  }
  .action-buttons {
    flex-direction: column;
    gap: 0.125rem;
  }
  .action-buttons .btn {
    width: 100%;
    text-align: center;
  }
  /* Dashboard servis kartları için mobil optimizasyon */
  .ios-blur {
    padding: 0.75rem !important;
    margin: 0.25rem 0 !important;
  }
  .ios-blur h5 {
    font-size: 0.9rem !important;
  }
  .ios-blur h6 {
    font-size: 0.8rem !important;
  }
  .ios-blur small {
    font-size: 0.7rem !important;
  }
  /* Grid layout mobil optimizasyonu */
  .row.gy-4 {
    gap: 0.5rem !important;
  }
  .col-md-6 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
}
/* Responsive Improvements */
@media (max-width: 768px) {
  .main-wrapper {
    margin-left: 0;
  }
  .main-wrapper .main-content {
    padding: 1% !important;
  }
  .container-fluid {
    padding: 1% !important;
  }
  .top-header .navbar {
    left: 0;
  }
  .sidebar-wrapper {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar-wrapper.show {
    transform: translateX(0);
  }
  .table-responsive {
    border: none;
  }
  .card {
    margin-bottom: 1rem;
  }
  /* Orta boyut mobil cihazlar için optimizasyon */
  .ios-blur {
    padding: 1rem !important;
  }
}
/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
/* Animation Improvements */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 0.3s ease-out;
}
/* Focus Improvements */
.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(58, 66, 115, 0.25);
}
/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Print Styles */
@media print {
  .sidebar-wrapper,
  .top-header,
  .page-footer {
    display: none !important;
  }
  .main-wrapper {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
  .card {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
}
/* switcher */
.form-check-img {
  max-width: 100%;
  height: auto;
}
.form-check-label-highlighter .form-check-input:checked[type=checkbox] ~ .form-check-label,
.form-check-label-highlighter .form-check-input:checked[type=radio] ~ .form-check-label {
  border-color: #3a4273;
}
.welcome-back-img {
  position: relative;
}
@media (min-width: 1280px) {
  .welcome-back-img {
    position: absolute;
    bottom: 0;
    right: 2rem;
  }
}
/* Remove any fixed widths that might cause horizontal scroll */
.main-content {
  overflow-x: hidden !important;
}
.card {
  overflow-x: hidden !important;
}
/* Force content to fit within viewport */
body {
  overflow-x: hidden !important;
}
.main-wrapper {
  overflow-x: hidden !important;
}
/* Specific fixes for dashboard cards */
.dashboard-stats .card {
  overflow: hidden;
}
.dashboard-stats .card-body {
  overflow: hidden;
}
/* Fix for any wide content */
* {
  box-sizing: border-box;
}
.container-fluid {
  overflow-x: hidden;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}