/*
 * Admin Modern - Bootstrap 5.3 Custom Theme
 */

:root {
  --primary: #1b458e;
  --primary-dark: #0f2a5c;
  --primary-light: #2563eb;
  --secondary: #64748b;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;

  --sidebar-width: 310px;
  --sidebar-collapsed: 70px;
  --navbar-height: 60px;

  --sidebar-bg: #000;
  --sidebar-text: #fff;
  --sidebar-active: #ffffff;
  --sidebar-hover-bg: rgba(255, 255, 255, 0.1);

  --card-bg: #ffffff;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --card-shadow-hover:
    0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);

  --body-bg: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-white: #ffffff;
  --border-color: #e2e8f0;

  --transition-base: all 0.3s ease;
}

/* ========================================
   BODY & LAYOUT
   ======================================== */
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: url('../assets/images/bg_login.png');
  color: var(--text-primary);
}

.bg-gfin {
  background: linear-gradient(89deg, #ef7d00 0%, #a46726 100%) !important;
}

.text-gfin {
  color: #c26210;
}

/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader #status {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
} */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.main-wrapper {
  display: flex;
  min-height: 100vh;
}

.content-wrapper {
  flex: 1;
  margin-left: var(--sidebar-width);
  transition: var(--transition-base);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.main-content {
  flex: 1;
  padding: 24px;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--sidebar-bg);
  z-index: 1040;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #fff;
  min-height: 80px;
}

.sidebar-header img {
  max-width: 160px;
  height: auto;
  /* filter: brightness(0) invert(1); */
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.sidebar .nav-item {
  margin-bottom: 4px;
}

.sidebar .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--sidebar-text);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-base);
  font-size: 14px;
  font-weight: 500;
}

.sidebar .nav-link i {
  width: 24px;
  margin-right: 12px;
  font-size: 18px;
  text-align: center;
}

.sidebar .nav-link:hover {
  background: var(--sidebar-hover-bg);
  color: var(--sidebar-active);
}

/* .sidebar .nav-link.active {
  background: linear-gradient(135deg, #ff9904 0%, #ff9904 100%);
  color: #272727 !important;
  box-shadow: 0 4px 12px rgba(27, 69, 142, 0.4);
} */

.sidebar .nav-submenu {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  margin-left: 28px;
}

.sidebar .nav-submenu .nav-item {
  margin-bottom: 2px;
}

.sidebar .nav-submenu .nav-link {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
}

.sidebar .nav-submenu .nav-link i {
  width: 20px;
  font-size: 14px;
  margin-right: 10px;
}

.sidebar .nav-submenu .nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.nav-toggle {
  cursor: pointer;
  text-decoration: none !important;
}

.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:active {
  text-decoration: none !important;
}

.nav-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 10px;
  transition: var(--transition-base);
}

.nav-toggle.collapsed::after {
  transform: rotate(-90deg);
}

.nav-toggle.active::after {
  color: #fff;
}

/* ========================================
   NAVBAR
   ======================================== */
.top-navbar {
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: opacity(80%);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sidebar-toggle {
  display: block;
  padding: 8px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition-base);
}

.sidebar-toggle:hover {
  background: var(--body-bg);
}

/* Sidebar Collapsed State (Desktop) */
@media (min-width: 992px) {
  .sidebar.collapsed {
    width: var(--sidebar-collapsed);
  }

  .sidebar.collapsed .sidebar-header {
    padding: 10px;
  }

  .sidebar.collapsed .sidebar-header img {
    max-width: 40px;
  }

  .sidebar.collapsed .sidebar-nav {
    padding: 16px 8px;
  }

  .sidebar.collapsed .nav-link {
    justify-content: center;
    padding: 12px 0;
  }

  .sidebar.collapsed .nav-link span {
    display: none;
  }

  .sidebar.collapsed .nav-link i {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .sidebar.collapsed .nav-toggle::after {
    display: none;
  }

  .sidebar.collapsed .nav-item {
    position: relative;
  }

  .sidebar.collapsed .nav-submenu {
    display: none !important;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #1e293b;
    border-radius: 8px;
    padding: 8px !important;
    margin: 0 !important;
    border-left: none;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.3);
    z-index: 1050;
  }

  .sidebar.collapsed .nav-item:hover > .nav-submenu {
    display: block !important;
  }

  .sidebar.collapsed .nav-submenu .nav-link span {
    display: inline;
  }

  .sidebar.collapsed .nav-submenu .nav-link {
    justify-content: flex-start;
    padding: 8px 16px;
  }

  .sidebar.collapsed .nav-submenu .nav-link i {
    margin-right: 10px;
    width: 20px;
  }

  .sidebar.collapsed ~ .content-wrapper {
    margin-left: var(--sidebar-collapsed);
  }
}

.page-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.church-info select {
  padding-right: 30px;
  max-width: 350px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background-position: right 10px center;
}

.user-dropdown .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--body-bg);
  border: none;
  border-radius: 50px;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition-base);
}

/* .user-dropdown .btn:hover {
  opacity: 70%;
  font-weight: 300;

} */

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

/* ========================================
   CARDS
   ======================================== */

.card-custom {
  border: none;
}

.card-header.card-header-custom {
  background: linear-gradient(135deg, #ff9904 0%, #ff9904 100%);
  border-bottom: 1px solid #3333331f;
  padding: 10px 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #272727 !important;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-weight: 600;
  margin-bottom: 8px;
}

/* Page Header Card */
.page-header-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #374151;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
  border: 1px solid #e5e7eb;
}

.page-header-card h3 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
}

/* Section Headers */
.section-header {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  text-align: center;
}

/* ========================================
   BUTTONS
   ======================================== */
/* .btn {
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 20px;
  transition: var(--transition-base);
  border: none;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  box-shadow: 0 4px 12px rgba(27, 69, 142, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(27, 69, 142, 0.35);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.btn-info {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.btn-outline-secondary {
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  background: transparent;
}

.btn-outline-secondary:hover {
  background: var(--body-bg);
  border-color: var(--secondary);
} */

/* ========================================
   FORMS
   ======================================== */
.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  transition: var(--transition-base);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 69, 142, 0.1);
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.input-group-text {
  background: rgba(189, 189, 189, 0.95);
  border: none;
  color: #000;
  border-radius: 8px 0 0 8px;
}

/* ========================================
   TABLES
   ======================================== */
.table {
  margin-bottom: 0;
}

.table thead th {
  background: var(--body-bg);
  border: none;
  padding: 16px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table tbody td {
  padding: 16px;
  vertical-align: middle;
  border-color: var(--border-color);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
  background-color: rgba(27, 69, 142, 0.05);
}

/* ========================================
   FILTER BAR
   ======================================== */
.filter-bar {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}

.filter-bar .row {
  align-items: flex-end;
}

.filter-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.main-footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  padding: 16px 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
}

.main-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* ========================================
   LOGIN PAGE
   ======================================== */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.login-footer p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: white;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-overlay p {
  font-size: 14px;
  font-weight: 500;
}

.login-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/images/bg_login.png') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.login-page > * {
  position: relative;
  z-index: 2;
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(10, 10, 10, 0.85);;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-logo img {
  max-width: 280px;
  height: auto;
  /* filter: brightness(0) invert(1); */
}

.login-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.login-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: 400;
}

.login-form .input-group {
  margin-bottom: 24px;
  position: relative;
}

.login-form .input-group-text {
  width: 50px;
  justify-content: center;
  background: #f1f5f9;
  /* border: 2px solid #e2e8f0; */
  color: #475569;
  font-size: 16px;
  /* transition: all 0.3s ease; */
}

/* .login-form .input-group:focus-within .input-group-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
} */

.login-form .form-control {
  border-left: none;
  border-radius: 0 12px 12px 0;
  border: 2px solid #e2e8f0;
  padding: 14px 20px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.login-form .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-form .form-control::placeholder {
  color: #94a3b8;
}

.form-check {
  margin-bottom: 32px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* .form-check-input:checked {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
} */

.form-check-label {
  color: #475569;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.btn-login {
  background: #fff;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
}

.login-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.login-footer p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: white;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-overlay p {
  font-size: 16px;
  font-weight: 500;
}

/* ========================================
   UTILITIES
   ======================================== */
.bg-gradient-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  ) !important;
}

.bg-gradient-success {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%) !important;
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
}

.bg-gradient-danger {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%) !important;
}


/* 2FA Code Inputs */
.code-inputs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.code-input {
  width: 55px;
  height: 65px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.2s ease;
}

.code-input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  outline: none;
}

/* Enhancing login card for verification */
.login-card {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.rounded-xl {
  border-radius: 12px !important;
}

.shadow-soft {
  box-shadow: var(--card-shadow) !important;
}

/* Box styles (compatibility with existing classes) */
.box {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  margin-bottom: 24px;
}

.box-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.box-body {
  padding: 24px;
}

.box-title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.solaris-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
}

.solaris-header .box-header {
  border: none;
}

.solaris-header .box-title {
  color: #fff;
}

/* BXS User cards (compatibility) */
.bxs_user {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 0;
  margin-bottom: 20px;
}

.bxs_user .header {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%) !important;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px 12px 0 0;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.show {
    transform: translateX(0);
  }

  .content-wrapper {
    margin-left: 0;
  }

  .sidebar-toggle {
    display: block;
  }

  .sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1035;
    display: none;
  }

  .sidebar-backdrop.show {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .main-content {
    padding: 16px;
  }

  .card-body {
    padding: 16px;
  }

  .login-card {
    padding: 32px 24px;
  }

  .filter-actions {
    width: 100%;
    margin-top: 16px;
  }

  .filter-actions .btn {
    flex: 1;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-out;
}

/* Smooth page transitions */
.main-content {
  animation: fadeIn 0.3s ease-out;
}

/* ========================================
   TABS (Client Edit Page)
   ======================================== */
#clientTabs {
  margin-bottom: 20px;
  border: none;
}

#clientTabs .nav-link {
  color: #6b7280;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px 8px 0 0;
  background: transparent;
  transition: all 0.3s ease;
  margin-right: 2px;
  position: relative;
}

#clientTabs .nav-link:hover {
  color: #374151;
  background-color: #f9fafb;
  border-color: #d1d5db;
}

#clientTabs .nav-link.active {
  background-color: #e5e7eb;
  color: #111827;
  border-bottom: 2px solid #d1d5db;
}
