/**
 * Goltech / EasyPDF Modern Theme System
 * High-End, Smooth, Smarter UI Overhaul
 * Featuring Smooth Pills, Modern Curves, Elevated Surfaces, & Polished Borders
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-dark: #0f172a;
  
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  
  --border-subtle: rgba(226, 232, 240, 0.85);
  --border-focus: rgba(59, 130, 246, 0.4);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 9999px;
  
  --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 4px 12px -2px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 16px 30px -6px rgba(37, 99, 235, 0.14), 0 6px 12px -4px rgba(15, 23, 42, 0.05);
  --shadow-dropdown: 0 12px 28px -4px rgba(15, 23, 42, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
}

/* ==========================================================================
   1. GLOBAL RESET & TYPOGRAPHY
   ========================================================================== */
body, html {
  font-family: var(--font-primary) !important;
  background-color: var(--bg-body) !important;
  color: var(--text-body) !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-primary) !important;
  color: var(--text-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
}

/* Sleek Modern Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ==========================================================================
   2. TOP BAR & APP HEADER (LIGHT PURPLE & BABY PINK THEME)
   ========================================================================== */
.app-header,
.app-header.app-header-dark,
.app-header.app-header-light {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 45%, #fdf2f8 100%) !important;
  border-bottom: 1.5px solid rgba(216, 180, 254, 0.55) !important;
  box-shadow: 0 4px 20px -2px rgba(168, 85, 247, 0.08), 0 2px 8px -1px rgba(236, 72, 153, 0.05) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  height: 3.75rem !important;
}

.top-bar {
  background: transparent !important;
  background-color: transparent !important;
  height: 3.75rem !important;
}

.top-bar-brand,
.app-header .top-bar-brand,
.app-header.app-header-dark .top-bar-brand,
.app-header.app-header-light .top-bar-brand {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  height: 3.75rem !important;
  display: flex !important;
  align-items: center !important;
}

/* Hamburger toggle for light purple topbar */
.hamburger {
  padding: 8px 10px !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
}

.hamburger:hover {
  background: rgba(216, 180, 254, 0.25) !important;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: #6b21a8 !important;
  border-radius: 4px !important;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ec4899 !important;
}

/* Smooth Wallet Balance Pill in Header */
.header-nav .btn-dark,
.header-nav-dropdown .btn,
.top-bar-item-right .btn-dark {
  border-radius: 9999px !important;
  background: #ffffff !important;
  border: 1.5px solid #d8b4fe !important;
  box-shadow: 0 2px 10px rgba(147, 51, 234, 0.12) !important;
  color: #7c3aed !important;
  padding: 6px 18px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-decoration: none !important;
}

.header-nav .btn-dark:hover,
.header-nav-dropdown .btn:hover,
.top-bar-item-right .btn-dark:hover {
  transform: translateY(-1px) scale(1.02) !important;
  border-color: #c084fc !important;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.22) !important;
  color: #581c87 !important;
  background: #ffffff !important;
}

.header-nav .btn-dark .fa-wallet,
.header-nav-dropdown .btn .fa-wallet {
  color: #10b981 !important;
  margin-right: 4px !important;
  font-size: 14px !important;
}

.wallet-top-plus {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  margin-left: 6px !important;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4) !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.header-nav .btn-dark:hover .wallet-top-plus,
.top-bar-item-right .btn-dark:hover .wallet-top-plus {
  transform: rotate(90deg) scale(1.15) !important;
}

/* User Account Trigger Pill */
.btn-account,
.app-header .btn-account,
.app-header-dark .btn-account {
  border-radius: 9999px !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(216, 180, 254, 0.75) !important;
  box-shadow: 0 2px 10px rgba(147, 51, 234, 0.09) !important;
  padding: 4px 16px 4px 5px !important;
  margin-left: 10px !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  height: auto !important;
  min-height: unset !important;
}

.btn-account:hover, 
.btn-account[aria-expanded="true"],
.app-header .btn-account:hover,
.app-header-dark .btn-account:hover {
  background: #ffffff !important;
  border-color: #c084fc !important;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.18) !important;
}

.tile.tile-circle {
  border-radius: 50% !important;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.32) !important;
}

.account-name {
  font-weight: 700 !important;
  color: #1e1b4b !important;
  font-size: 13.5px !important;
  line-height: 1.2 !important;
}

.account-description {
  color: #7c3aed !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

/* Dropdown Menu styling for light purple header */
.dropdown-menu {
  border-radius: 16px !important;
  border: 1.5px solid #e9d5ff !important;
  box-shadow: 0 12px 32px -4px rgba(168, 85, 247, 0.18) !important;
  padding: 8px !important;
}

.dropdown-item {
  border-radius: 10px !important;
  padding: 8px 14px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  color: #334155 !important;
  transition: all 0.15s ease !important;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: #faf5ff !important;
  color: #7c3aed !important;
}

/* ==========================================================================
   2.1 NOTIFICATION & STATUS BANNER (LIGHT PURPLE & BABY PINK)
   ========================================================================== */
.banner-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #fdf2f8 100%) !important;
  border: 1.5px solid #e9d5ff !important;
  border-radius: 18px !important;
  padding: 14px 22px !important;
  margin-bottom: 24px !important;
  box-shadow: 0 4px 18px -2px rgba(168, 85, 247, 0.08), 0 2px 6px -1px rgba(236, 72, 153, 0.05) !important;
  color: #4c1d95 !important;
}

.banner-status-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #4c1d95 !important;
}

.banner-status-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #ede9fe !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #7c3aed !important;
  font-size: 14px !important;
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.15) !important;
}

.banner-btn-balance {
  border-radius: 9999px !important;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 8px 22px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.28) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.banner-btn-balance:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   3. SIDEBAR NAVIGATION (APP-ASIDE)
   ========================================================================== */
.app-aside-light {
  background-color: #ffffff !important;
  border-right: 1px solid #eef2f6 !important;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.02) !important;
}

.aside-menu .stacked-menu .menu-link {
  border-radius: var(--radius-md) !important;
  margin: 3px 10px !important;
  padding: 9px 14px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #475569 !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.aside-menu .stacked-menu .menu-link:hover {
  background-color: #f1f5f9 !important;
  color: #2563eb !important;
  transform: translateX(3px) !important;
}

.aside-menu .stacked-menu .menu-icon {
  color: #64748b !important;
  margin-right: 10px !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

.aside-menu .stacked-menu .menu-link:hover .menu-icon {
  color: #2563eb !important;
}

.aside-menu .stacked-menu .menu-item.has-active > .menu-link {
  background: linear-gradient(90deg, #eff6ff 0%, #f0fdfa 100%) !important;
  color: #2563eb !important;
  font-weight: 600 !important;
  border-left: 3.5px solid #2563eb !important;
}

.aside-menu .stacked-menu .menu-item.has-active > .menu-link .menu-icon {
  color: #2563eb !important;
}

/* Submenu items */
.aside-menu .stacked-menu .menu-subnav .menu-link {
  padding-left: 36px !important;
  font-size: 13px !important;
}

/* ==========================================================================
   4. SMOOTH PILL SEARCHBARS & INPUTS
   ========================================================================== */
/* Search Input Smooth Pill Styling */
input[name="searchInput"],
input[type="search"],
.search-pill-input,
.search-input {
  border-radius: var(--radius-pill) !important;
  padding: 0.65rem 1.25rem 0.65rem 2.75rem !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 14px center !important;
  background-size: 16px 16px !important;
  border: 1.5px solid #e2e8f0 !important;
  font-size: 13.5px !important;
  color: #1e293b !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

input[name="searchInput"]:focus,
input[type="search"]:focus,
.search-pill-input:focus,
.search-input:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12), 0 2px 6px rgba(0,0,0,0.04) !important;
  outline: none !important;
}

/* Search Submit Button Smooth Pill */
button[name="search"],
.btn-search,
.search-btn {
  border-radius: var(--radius-pill) !important;
  padding: 0.65rem 1.6rem !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.02em !important;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  border: none !important;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25) !important;
  transition: all 0.2s ease !important;
}

button[name="search"]:hover,
.btn-search:hover,
.search-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35) !important;
}

/* Global Form Controls (Inputs, Selects) - Smooth Rounded Corners */
.form-control,
.form-select,
select.form-control {
  border-radius: var(--radius-md) !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 0.6rem 1rem !important;
  font-size: 13.5px !important;
  color: #1e293b !important;
  background-color: #ffffff !important;
  transition: all 0.2s ease !important;
  height: auto !important;
  min-height: 42px !important;
}

.form-control:focus,
.form-select:focus,
select.form-control:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12) !important;
  outline: none !important;
}

/* Input Groups - Harmonious Inner Corners */
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-left-radius: var(--radius-md) !important;
  border-bottom-left-radius: var(--radius-md) !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-right-radius: var(--radius-md) !important;
  border-bottom-right-radius: var(--radius-md) !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.input-group-append .btn,
.input-group-prepend .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
  font-weight: 600 !important;
}

.input-group-prepend .btn {
  border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
}

/* Form Labels */
label {
  font-weight: 600 !important;
  font-size: 12.5px !important;
  color: #475569 !important;
  margin-bottom: 6px !important;
  text-transform: capitalize !important;
}

/* ==========================================================================
   5. SMOOTH PILL BADGES & CHIPS
   ========================================================================== */
.badge {
  border-radius: var(--radius-pill) !important;
  padding: 5px 12px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.badge-success,
.badge-subtle-success,
.badge-subtle.badge-success {
  background-color: #ecfdf5 !important;
  color: #059669 !important;
  border: 1px solid #a7f3d0 !important;
}

.badge-danger,
.badge-subtle-danger,
.badge-subtle.badge-danger {
  background-color: #fef2f2 !important;
  color: #dc2626 !important;
  border: 1px solid #fecaca !important;
}

.badge-warning,
.badge-subtle-warning,
.badge-subtle.badge-warning {
  background-color: #fffbeb !important;
  color: #d97706 !important;
  border: 1px solid #fde68a !important;
}

.badge-primary,
.badge-subtle-primary,
.badge-subtle.badge-primary {
  background-color: #eff6ff !important;
  color: #2563eb !important;
  border: 1px solid #bfdbfe !important;
}

.badge-info,
.badge-subtle-info,
.badge-subtle.badge-info {
  background-color: #f0fdfa !important;
  color: #0d9488 !important;
  border: 1px solid #99f6e4 !important;
}

.badge-dark {
  background-color: #0f172a !important;
  color: #f8fafc !important;
}

/* ==========================================================================
   6. CARDS & ELEVATED SURFACES (SMOOTH CORNERS & BORDERS)
   ========================================================================== */
.card {
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border-subtle) !important;
  background-color: #ffffff !important;
  box-shadow: var(--shadow-subtle) !important;
  overflow: hidden !important;
  margin-bottom: 1.5rem !important;
}

.card-header {
  border-top-left-radius: var(--radius-lg) !important;
  border-top-right-radius: var(--radius-lg) !important;
  border-bottom: 1px solid #f1f5f9 !important;
  background-color: #ffffff !important;
  padding: 1rem 1.25rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
}

.card-header.bg-primary {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%) !important;
  border-bottom: none !important;
  color: #ffffff !important;
}

.card-footer {
  border-bottom-left-radius: var(--radius-lg) !important;
  border-bottom-right-radius: var(--radius-lg) !important;
  border-top: 1px solid #f1f5f9 !important;
  background-color: #ffffff !important;
  padding: 0.85rem 1.25rem !important;
}

/* ==========================================================================
   7. DASHBOARD SERVICE CARDS (SMART & MODERN LIFT)
   ========================================================================== */
.card-figure.is-hoverable {
  border-radius: 18px !important;
  border: 1.5px solid #eef2f6 !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px -1px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  padding: 14px 10px !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Remove outdated divider line inside service cards */
.card-figure .hr {
  display: none !important;
}

.card-figure .card-icon {
  margin: 6px auto 10px auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.card-figure .card-icon img {
  height: 52px !important;
  width: auto !important;
  max-width: 60px !important;
  object-fit: contain !important;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06));
}

.card-figure .card-text {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  margin-bottom: 2px !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  transition: color 0.2s ease !important;
}

/* Hover Effect: Soft lift, rich shadow, subtle glow border */
.card-figure.is-hoverable:hover {
  transform: translateY(-6px) scale(1.02) !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 16px 30px -6px rgba(37, 99, 235, 0.16), 0 4px 10px -2px rgba(15, 23, 42, 0.04) !important;
}

.card-figure.is-hoverable:hover .card-icon img {
  transform: scale(1.12) !important;
}

.card-figure.is-hoverable:hover .card-text {
  color: #2563eb !important;
}

/* ==========================================================================
   7b. DASHBOARD STAT & METRIC CARDS (CLEAN PILLS & CLEAR METRICS)
   ========================================================================== */
.card-figure:focus,
.card-figure:active,
.card-figure:focus-visible {
  outline: none !important;
  box-shadow: 0 2px 8px -1px rgba(15, 23, 42, 0.04) !important;
}

.card-figure .card-icon h4 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
}

.card-figure .card-icon h4 .stat-count,
.card-figure .card-icon h4 > *:not(small):not(.badge) {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1 !important;
}

.card-figure .card-icon h4 small,
.card-figure .card-icon h4 .stat-amt-pill {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  border-radius: var(--radius-pill) !important;
  padding: 3px 12px !important;
  background: #ecfdf5 !important;
  color: #059669 !important;
  border: 1px solid #a7f3d0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
}

.card-figure .card-icon h4 small.stat-amt-zero,
.card-figure .card-icon h4 .stat-amt-pill.stat-amt-zero {
  background: #f8fafc !important;
  color: #64748b !important;
  border-color: #e2e8f0 !important;
}

.card-figure .card-icon h4 small.stat-amt-danger,
.card-figure .card-icon h4 .stat-amt-pill.stat-amt-danger {
  background: #fef2f2 !important;
  color: #dc2626 !important;
  border-color: #fecaca !important;
}

.card-figure .card-icon h4 small.stat-amt-primary,
.card-figure .card-icon h4 .stat-amt-pill.stat-amt-primary {
  background: #eff6ff !important;
  color: #2563eb !important;
  border-color: #bfdbfe !important;
}

.card-figure .card-icon h4 small.stat-amt-warning,
.card-figure .card-icon h4 .stat-amt-pill.stat-amt-warning {
  background: #fffbeb !important;
  color: #d97706 !important;
  border-color: #fde68a !important;
}

.card-figure .card-text {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  margin-top: 8px !important;
  margin-bottom: 2px !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  text-align: center !important;
}

/* Searchbar Icon Overlap Fix */
#dashServiceSearch,
.search-pill-input,
input[name="searchInput"] {
  padding-left: 48px !important;
  padding-right: 18px !important;
  background-position: 18px center !important;
}

/* Carousel / Banners in Dashboard */
#carouselExampleControls {
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-card) !important;
}

#carouselExampleControls .card {
  border: none !important;
  border-radius: var(--radius-lg) !important;
}

#carouselExampleControls img {
  border-radius: var(--radius-lg) !important;
  object-fit: cover !important;
}

/* ==========================================================================
   8. MODERN BUTTONS (PILLS & CURVES)
   ========================================================================== */
.btn {
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  padding: 0.55rem 1.15rem !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.btn-pill {
  border-radius: var(--radius-pill) !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.btn-sm {
  padding: 0.35rem 0.85rem !important;
  font-size: 12px !important;
  border-radius: var(--radius-sm) !important;
}

.btn-lg {
  padding: 0.75rem 1.6rem !important;
  font-size: 15px !important;
  border-radius: var(--radius-md) !important;
}

/* Gradient Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35) !important;
  transform: translateY(-1px) !important;
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25) !important;
}

.btn-success:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35) !important;
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.25) !important;
}

.btn-danger:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35) !important;
}

.btn-secondary {
  background-color: #f1f5f9 !important;
  color: #334155 !important;
  border: 1px solid #cbd5e1 !important;
}

.btn-secondary:hover {
  background-color: #e2e8f0 !important;
  color: #0f172a !important;
}

/* Subtle Buttons */
.btn-subtle-primary {
  background: #eff6ff !important;
  color: #2563eb !important;
  border: 1px solid #bfdbfe !important;
}

.btn-subtle-success {
  background: #ecfdf5 !important;
  color: #059669 !important;
  border: 1px solid #a7f3d0 !important;
}

/* ==========================================================================
   9. DATA TABLES & TRANSACTION LEDGERS
   ========================================================================== */
.table-responsive {
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--border-subtle) !important;
  background: #ffffff !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-subtle) !important;
  margin-top: 1rem !important;
}

.table {
  margin-bottom: 0 !important;
  width: 100% !important;
}

.table thead th,
.table thead tr.bg-secondary th {
  background-color: #f8fafc !important;
  color: #475569 !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-top: none !important;
  border-bottom: 1.5px solid #e2e8f0 !important;
  padding: 14px 16px !important;
  white-space: nowrap !important;
}

.table tbody td {
  padding: 13px 16px !important;
  vertical-align: middle !important;
  border-top: 1px solid #f1f5f9 !important;
  font-size: 13px !important;
  color: #334155 !important;
}

.table tbody tr {
  transition: background-color 0.15s ease !important;
}

.table tbody tr:hover {
  background-color: #f8fafc !important;
}

/* ==========================================================================
   10. MODALS, DROPDOWNS & FLOATING ELEMENTS
   ========================================================================== */
.modal-content {
  border-radius: var(--radius-xl) !important;
  border: 1px solid var(--border-subtle) !important;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25) !important;
  overflow: hidden !important;
}

.modal-header {
  padding: 1.25rem 1.5rem !important;
  border-bottom: 1px solid #f1f5f9 !important;
  background-color: #ffffff !important;
}

.modal-footer {
  padding: 1rem 1.5rem !important;
  border-top: 1px solid #f1f5f9 !important;
  background-color: #f8fafc !important;
}

.dropdown-menu {
  border-radius: var(--radius-md) !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: var(--shadow-dropdown) !important;
  padding: 6px !important;
  background-color: #ffffff !important;
}

.dropdown-item {
  border-radius: var(--radius-sm) !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  transition: all 0.15s ease !important;
}

.dropdown-item:hover {
  background-color: #f1f5f9 !important;
  color: #2563eb !important;
  transform: translateX(2px) !important;
}

/* Floating WhatsApp Button Smooth Shadow */
.whatsapp-float {
  border-radius: 50% !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5) !important;
}

/* ==========================================================================
   11. AUTH / LOGIN FORM OVERHAUL
   ========================================================================== */
.auth {
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%) !important;
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

.auth-header {
  border-top-left-radius: 24px !important;
  border-top-right-radius: 24px !important;
}

.auth-form {
  border-radius: 24px !important;
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12) !important;
  padding: 2.2rem !important;
  max-width: 440px !important;
  width: 90% !important;
  margin: 0 auto !important;
}

.auth-form .form-control {
  border-radius: var(--radius-pill) !important;
  padding: 0.75rem 1.4rem !important;
  font-size: 14px !important;
}

.auth-form .btn-primary {
  border-radius: var(--radius-pill) !important;
  padding: 0.75rem 1.4rem !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   12. DASHBOARD SMART LIVE SEARCHBAR PILL
   ========================================================================== */
.dash-search-container {
  margin: 8px 0 20px 0;
  position: relative;
}

.dash-search-bar {
  width: 100%;
  max-width: 600px;
  position: relative;
}

.dash-search-input {
  width: 100%;
  border-radius: var(--radius-pill) !important;
  padding: 12px 20px 12px 46px !important;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 18px center !important;
  border: 1.5px solid #e2e8f0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.25s ease !important;
}

.dash-search-input:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  outline: none !important;
}


/* ==========================================================================
   13. FULL MOBILE RESPONSIVE OVERHAUL (B2B SAAS TIER)
   ========================================================================== */

/* 13.1 Sidebar & App Main Layout */
.app-aside-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1030;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-aside-mobile-overlay.show {
  display: block;
  opacity: 1;
}

@media (max-width: 991.98px) {
  /* Hide sidebar off-screen on mobile */
  .app-aside {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1040 !important;
    position: fixed !important;
    top: 0;
    bottom: 0;
    left: 0;
    width: 260px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1) !important;
  }

  /* Show sidebar when active class is applied */
  .app-aside.show-mobile {
    transform: translateX(0) !important;
  }

  /* Ensure main content takes full width when sidebar is hidden */
  .app-main {
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  .wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .page-inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Fix Header */
  .app-header {
    width: 100% !important;
    padding: 0 10px !important;
  }
  
  .top-bar-brand {
    width: auto !important;
    margin-right: auto !important;
  }
  
  .hamburger {
    margin-right: 10px !important;
    display: inline-block !important; /* Force show hamburger */
  }

  .logo {
    height: 40px !important; /* Slightly smaller logo on mobile */
  }

  /* 13.2 Dashboard Search & Banner */
  .dash-search-container > div {
    max-width: 100% !important;
    min-width: 100% !important;
  }
  
  .dash-search-input {
    width: 100% !important;
  }

  #updateBanner, .banner-container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    padding: 16px !important;
  }
  
  .banner-status-badge {
    justify-content: center !important;
  }
  
  .banner-btn-balance {
    width: 100% !important;
    justify-content: center !important;
  }

  /* 13.3 Grid & Service Cards */
  .row {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }
  
  .col-6 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  
  .card-figure {
    padding: 12px 6px !important;
  }
  
  .card-figure .card-icon img {
    height: 42px !important; /* Slightly smaller icons on mobile */
  }
  
  .card-figure .card-text {
    font-size: 11.5px !important;
  }

  /* 13.4 Stat Cards */
  .comm-card {
    padding: 18px 16px !important;
  }
  
  .comm-stat-value {
    font-size: 18px !important;
  }
  
  .comm-stat-label {
    font-size: 11px !important;
  }

  /* 13.5 Tables Mobile Fix */
  .table-responsive {
    border: 0 !important;
    box-shadow: none !important;
    margin-bottom: 20px !important;
    background: transparent !important;
  }
  
  .table-responsive > .table {
    background: #fff !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-subtle) !important;
    min-width: 600px !important; /* Force scroll */
  }

  /* 13.6 Floating WhatsApp Button */
  .whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
  }
  
  .whatsapp-float img {
    width: 26px !important;
    height: 26px !important;
  }
  
  /* 13.7 Forms & Inputs */
  .form-control, .form-select, .btn {
    width: 100% !important;
  }
  
  .btn.btn-sm.w-auto {
    width: auto !important;
  }
  
  /* Make topbar wallet button compact */
  .header-nav .btn-dark {
    padding: 4px 12px !important;
    font-size: 12px !important;
  }
}

/* Fix for super small screens */
@media (max-width: 375px) {
  .logo {
    height: 34px !important;
  }
  
  .account-summary {
    display: none !important;
  }
}

/* ==========================================================================
   14. COMPREHENSIVE RESPONSIVE TABLES & HORIZONTAL SCROLLING FIX
   ========================================================================== */

/* Universal table responsive container */
.table-responsive,
.table-responsive.scroll,
.card-body > .table-responsive {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  -webkit-overflow-scrolling: touch !important;
  margin-bottom: 1rem;
}

/* DataTables wrapper layout */
div.dataTables_wrapper {
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  clear: both !important;
}

/* Ensure DataTables scroll areas allow full horizontal movement */
div.dataTables_wrapper div.dataTables_scroll {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
}

div.dataTables_wrapper div.dataTables_scrollHead {
  overflow: hidden !important;
  width: 100% !important;
}

div.dataTables_wrapper div.dataTables_scrollBody {
  width: 100% !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Prominent, styled horizontal scrollbar */
.table-responsive::-webkit-scrollbar,
div.dataTables_wrapper div.dataTables_scrollBody::-webkit-scrollbar,
div.dataTables_scroll::-webkit-scrollbar {
  height: 10px !important;
  width: 10px !important;
}

.table-responsive::-webkit-scrollbar-track,
div.dataTables_wrapper div.dataTables_scrollBody::-webkit-scrollbar-track,
div.dataTables_scroll::-webkit-scrollbar-track {
  background: #f1f5f9 !important;
  border-radius: 8px !important;
}

.table-responsive::-webkit-scrollbar-thumb,
div.dataTables_wrapper div.dataTables_scrollBody::-webkit-scrollbar-thumb,
div.dataTables_scroll::-webkit-scrollbar-thumb {
  background: #94a3b8 !important;
  border-radius: 8px !important;
  border: 2px solid #f1f5f9 !important;
}

.table-responsive::-webkit-scrollbar-thumb:hover,
div.dataTables_wrapper div.dataTables_scrollBody::-webkit-scrollbar-thumb:hover,
div.dataTables_scroll::-webkit-scrollbar-thumb:hover {
  background: #475569 !important;
}

/* Ensure table cells don't squish into narrow unreadable columns */
table.dataTable,
.table-responsive > table {
  width: 100% !important;
  margin-bottom: 0 !important;
}

table.dataTable th,
table.dataTable td,
.table-responsive > table th,
.table-responsive > table td {
  white-space: nowrap !important;
  vertical-align: middle !important;
  padding: 0.65rem 0.85rem !important;
}

/* Fix for card clipping table horizontal overflow */
.card {
  overflow: visible !important;
}
.card-body {
  overflow-x: auto !important;
}

/* ==========================================================================
   14. TOPBAR WALLET PILL & PLUS BADGE
   ========================================================================== */
.header-nav .btn-dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 9999px !important;
  padding: 4px 12px 4px 10px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18) !important;
  transition: all 0.2s ease-in-out !important;
  display: inline-flex !important;
  align-items: center !important;
}

.header-nav .btn-dark:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35) !important;
  color: #ffffff !important;
}

.wallet-top-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff !important;
  font-size: 10px;
  margin-left: 5px;
  box-shadow: 0 1px 4px rgba(16, 185, 129, 0.5);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}

.header-nav .btn-dark:hover .wallet-top-plus {
  background: #ffffff !important;
  color: #2563eb !important;
  transform: rotate(90deg) scale(1.15);
}

/* ==========================================================================
   RESPONSE TABLES & DETAIL MODAL LEFT-SIDE VISIBILITY FIX
   ========================================================================== */
.text-secondary {
  color: #475569 !important;
}

/* Left column (Keys/Labels) in modals, cards, and response tables */
.modal-body table th,
.modal table th,
.card-body table th,
.table-responsive table th,
table th.text-secondary,
th.text-secondary {
  color: #1e293b !important;
  font-weight: 700 !important;
  background-color: #f8fafc !important;
  border-color: #e2e8f0 !important;
  letter-spacing: 0.015em !important;
}

/* Right column (Values) */
.modal-body table td,
.modal table td,
.card-body table td,
.table-responsive table td {
  color: #0f172a !important;
  border-color: #e2e8f0 !important;
  word-break: break-word !important;
}

/* Ensure modal dialog table does not hide or clip labels */
.modal-body .table-responsive {
  border-radius: 8px !important;
  border: 1px solid #e2e8f0 !important;
}

/* ==========================================================================
   PREMIUM EXECUTIVE BUTTONS & INTERACTIVE CONTROLS
   ========================================================================== */

/* Modern Primary Button (Save Amount, etc.) */
.btn-modern-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 10px 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  text-decoration: none !important;
}
.btn-modern-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5) !important;
  color: #ffffff !important;
}
.btn-modern-primary:active {
  transform: translateY(0px) scale(0.98) !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4) !important;
}

/* Executive Big Action Trigger (Replaces flat ugly warning banner) */
.btn-modern-action-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #c2410c 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 14px !important;
  padding: 14px 22px !important;
  display: flex !important;
  align-items: center !important;
  text-align: left !important;
  width: 100% !important;
  box-shadow: 0 8px 24px -4px rgba(234, 88, 12, 0.45), 0 3px 8px -1px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.btn-modern-action-amber::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 25%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(25deg);
  transition: all 0.75s ease;
}
.btn-modern-action-amber:hover::before {
  left: 140%;
}
.btn-modern-action-amber:hover {
  transform: translateY(-3px) scale(1.008) !important;
  box-shadow: 0 14px 30px -4px rgba(234, 88, 12, 0.6), 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  color: #ffffff !important;
}
.btn-modern-action-amber:active {
  transform: translateY(-1px) scale(0.99) !important;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4) !important;
}

.btn-modern-action-amber .action-icon-disc {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-modern-action-amber .action-content {
  display: flex;
  flex-direction: column;
}
.btn-modern-action-amber .action-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.btn-modern-action-amber .action-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  margin-top: 3px;
}
.btn-modern-action-amber .action-arrow {
  margin-left: auto;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.25s ease;
}
.btn-modern-action-amber:hover .action-arrow {
  transform: translateX(5px);
  color: #ffffff;
}

/* Commission Setting Widget in Tables */
.comm-widget-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.comm-input-pill {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 5px 10px 5px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  width: 105px;
}
.comm-input-pill:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.comm-input-field {
  width: 100%;
  border: none !important;
  outline: none !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  color: #0f172a !important;
  background: transparent !important;
  padding: 0 !important;
}
.comm-input-unit {
  font-weight: 700;
  font-size: 12.5px;
  color: #64748b;
  user-select: none;
  margin-left: 4px;
}
.comm-btn-save {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 9px !important;
  padding: 6px 15px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  height: 38px !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
}
.comm-btn-save:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.5) !important;
  color: #ffffff !important;
}
.comm-btn-save:active {
  transform: translateY(0) scale(0.97) !important;
}

/* ==========================================================================
   DEDICATED CURRENCY INPUT WIDGET (NO OVERLAPPING SYMBOLS)
   ========================================================================== */
.input-currency-wrapper {
  display: flex !important;
  align-items: center !important;
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 10px !important;
  height: 48px !important;
  overflow: hidden !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.2s ease !important;
}

.input-currency-wrapper:focus-within {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.input-currency-wrapper .currency-tag {
  width: 48px !important;
  height: 48px !important;
  background: #f1f5f9 !important;
  border-right: 1.5px solid #cbd5e1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #334155 !important;
  user-select: none !important;
  flex-shrink: 0 !important;
}

.input-currency-wrapper .currency-input {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 0 16px !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  box-shadow: none !important;
}




