/* ==========================================================================
   WebInHost Modern Minimalist Light Theme Stylesheet
   Assets: public/assets/css/styles.css
   ========================================================================== */

:root {
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Color Palette - Minimalist Slate & Electric Blue */
  --bg-app: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #f1f5f9;
  --bg-surface-elevated: #ffffff;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-focus: #3b82f6;
  --border-subtle: #f1f5f9;
  
  --brand-primary: #2563eb;
  --brand-primary-hover: #1d4ed8;
  --brand-primary-subtle: #eff6ff;
  --brand-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
  
  --success-color: #10b981;
  --success-subtle: #ecfdf5;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --danger-subtle: #fef2f2;
  
  /* Shadow Elevation */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 20px 45px -15px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(226, 232, 240, 0.7);
  --shadow-btn: 0 4px 14px 0 rgba(37, 99, 235, 0.28);
  --shadow-btn-hover: 0 6px 20px 0 rgba(37, 99, 235, 0.38);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-app);
  color: var(--text-primary);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */

.modern-auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  width: 100%;
  background-color: var(--bg-app);
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.035) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.035) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(241, 245, 249, 0.5) 0px, transparent 100%);
}

/* Left Form Pane */
.modern-auth-pane-form {
  width: 45%;
  min-width: 320px;
  background: var(--bg-surface);
  padding: 2.25rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-right: 1px solid var(--border-light);
  overflow-y: auto;
}

/* Right Feature Showcase Pane */
.modern-auth-pane-showcase {
  width: 55%;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2.25rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow-y: auto;
}

/* Background Ambient Orbs */
.showcase-mesh-glow {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, rgba(99, 102, 241, 0.02) 70%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

/* ==========================================================================
   Brand & Navigation Elements
   ========================================================================== */

.modern-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.modern-brand-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.modern-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-gradient);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.modern-brand-text {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.modern-brand-text .accent {
  color: var(--brand-primary);
}

.modern-pill-badge {
  background: var(--brand-primary-subtle);
  color: var(--brand-primary);
  border: 1px solid rgba(37, 99, 235, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
}

.modern-link-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  padding: 0.38rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.modern-link-btn:hover {
  background: var(--brand-primary-subtle);
  border-color: rgba(37, 99, 235, 0.25);
  color: var(--brand-primary-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */

.modern-title-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.modern-subtitle-main {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

/* ==========================================================================
   Form Controls & Modern Input System
   ========================================================================== */

.modern-form-group {
  margin-bottom: 1rem;
}

.modern-form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modern-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  transition: var(--transition-fast);
  overflow: hidden;
}

.modern-input-wrapper:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.modern-input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  flex-shrink: 0;
}

.modern-form-input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.56rem 0.8rem 0.56rem 0;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--text-primary);
  outline: none;
}

.modern-form-input::placeholder {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.84rem;
}

.modern-toggle-pwd-btn {
  background: transparent;
  border: none;
  padding: 0 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  height: 100%;
}

.modern-toggle-pwd-btn:hover {
  color: var(--text-primary);
}

/* Custom Checkbox */
.modern-checkbox-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

.form-check-input:checked {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.form-check-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Modern Alerts */
.modern-alert-danger {
  background: var(--danger-subtle);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #991b1b;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  animation: fadeIn 0.2s ease;
}

/* Submit Action Button */
.modern-btn-submit {
  background: var(--brand-gradient);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0.68rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

.modern-btn-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
  color: #ffffff;
}

.modern-btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

.modern-btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/* ==========================================================================
   Marketing & Infrastructure Showcase Cards
   ========================================================================== */

.modern-feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

.modern-feature-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.modern-feature-icon {
  width: 34px;
  height: 34px;
  background: var(--brand-primary-subtle);
  color: var(--brand-primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.modern-feature-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.modern-feature-desc {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* System Health Live Monitor Card */
.modern-health-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.95rem 1.15rem;
  box-shadow: var(--shadow-sm);
}

.pulse-dot-green {
  width: 7px;
  height: 7px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-dot-green::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--success-color);
  border-radius: 50%;
  animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
.modern-auth-footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.modern-auth-footer a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}

.modern-auth-footer a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Registration Form Components
   ========================================================================== */

.modern-reg-pane-form {
  width: 52%;
  min-width: 320px;
  background: var(--bg-surface);
  padding: 2.25rem 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-right: 1px solid var(--border-light);
  overflow-y: auto;
}

.modern-reg-pane-showcase {
  width: 48%;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2.25rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow-y: auto;
}

.modern-form-section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--brand-primary);
  text-transform: uppercase;
  margin-top: 0.95rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #eff6ff;
}

.modern-form-section-title:first-of-type {
  margin-top: 0;
}

.modern-form-section-title i {
  font-size: 0.85rem;
}

.modern-form-select {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.54rem 0.8rem;
  font-size: 0.86rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  font-family: inherit;
  width: 100%;
}

.modern-form-select:focus {
  background-color: #ffffff;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  outline: none;
}

/* Phone Country Code Select */
.country-code-select {
  width: 140px !important;
  min-width: 140px !important;
  max-width: 150px !important;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 0.54rem 0.65rem;
  cursor: pointer;
}

.country-code-select:focus {
  border-color: var(--border-focus);
  box-shadow: none;
  background-color: #ffffff;
}

/* Inline OTP Bar */
.otp-inline-bar {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 9px;
  padding: 6px 9px;
  margin-top: 5px;
  animation: fadeIn 0.2s ease;
  overflow: hidden;
}

.otp-compact-input {
  width: 76px;
  max-width: 82px;
  border: 1px solid #93c5fd;
  border-radius: 6px;
  padding: 0.22rem 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  font-family: monospace;
  letter-spacing: 1.5px;
  background: #ffffff;
  outline: none;
  transition: all 0.15s ease;
}

.otp-compact-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2.5px rgba(37, 99, 235, 0.15);
}

.verified-input-active {
  border-color: var(--success-color) !important;
  background-color: #f0fdf4 !important;
}

/* Compact Nested Verify Button */
.btn-input-verify {
  background: var(--brand-primary);
  color: #ffffff;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 0.32rem 0.65rem;
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-input-verify:hover:not(:disabled) {
  background: var(--brand-primary-hover);
  color: #ffffff;
}

.btn-input-verify:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

/* Password Strength Indicator */
.strength-indicator-pill {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.12rem 0.5rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.strength-weak { background: #fee2e2; color: #dc2626; border: 1px solid #fecaca; }
.strength-fair { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.strength-good { background: #e0e7ff; color: #4338ca; border: 1px solid #c7d2fe; }
.strength-strong { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }

/* Showcase Benefit List */
.showcase-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 11px;
  padding: 0.8rem 0.95rem;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.showcase-benefit-item:hover {
  transform: translateY(-1.5px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.showcase-benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-primary-subtle);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1199.98px) {
  .modern-auth-pane-form,
  .modern-reg-pane-form {
    padding: 2.5rem 2.25rem;
    width: 55%;
  }
  .modern-auth-pane-showcase,
  .modern-reg-pane-showcase {
    padding: 2.5rem 2.25rem;
    width: 45%;
  }
}

@media (max-width: 991.98px) {
  .modern-auth-wrapper {
    flex-direction: column;
  }
  .modern-auth-pane-form,
  .modern-reg-pane-form {
    width: 100%;
    min-height: auto;
    padding: 2.5rem 1.75rem;
    border-right: none;
  }
  .modern-auth-pane-showcase,
  .modern-reg-pane-showcase {
    width: 100%;
    border-top: 1px solid var(--border-light);
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .modern-auth-pane-form,
  .modern-reg-pane-form {
    padding: 2rem 1.25rem;
  }
  .modern-auth-pane-showcase,
  .modern-reg-pane-showcase {
    padding: 2rem 1.25rem;
  }
  .modern-title-main {
    font-size: 1.5rem;
  }
  .country-code-select {
    width: 115px !important;
    min-width: 115px !important;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Modern Minimalist Customer Dashboard Styles
   ========================================================================== */

:root {
  --cust-sidebar-width: 250px;
  --cust-bg-body: #f8fafc;
  --cust-sidebar-bg: #ffffff;
  --cust-primary: #2563eb;
  --cust-text: #0f172a;
  --cust-muted: #64748b;
  --cust-border: #e2e8f0;
}

.customer-layout { 
  display: flex; 
  min-height: 100vh; 
  width: 100%;
}

.customer-sidebar-desktop {
  width: var(--cust-sidebar-width, 250px);
  background: var(--cust-sidebar-bg, #ffffff);
  border-right: 1px solid var(--cust-border, #e2e8f0);
  position: fixed; 
  top: 0; 
  bottom: 0; 
  left: 0; 
  z-index: 100;
  padding: 1.25rem 0.75rem; 
  display: flex; 
  flex-direction: column; 
  overflow-y: auto;
  overflow-x: hidden;
}

.main-content-wrapper { 
  margin-left: var(--cust-sidebar-width, 250px); 
  flex-grow: 1; 
  display: flex; 
  flex-direction: column; 
  min-width: 0; 
  width: calc(100% - var(--cust-sidebar-width, 250px));
}

@media (max-width: 991.98px) {
  .customer-sidebar-desktop { 
    display: none !important; 
    visibility: hidden !important;
    width: 0 !important;
  }
  .main-content-wrapper { 
    margin-left: 0 !important; 
    width: 100% !important; 
  }
}

/* Dashboard Content Wrapper & Grid */
.cust-content {
  padding: 1.5rem 1.75rem;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .cust-content {
    padding: 1rem 0.85rem;
  }
}

/* 1. Stat Summary Cards Grid */
.summary-card,
.dash-stat-card {
  background: var(--bg-surface, #ffffff);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.02);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}

.summary-card:hover,
.dash-stat-card:hover {
  transform: translateY(-2.5px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.03);
}

.summary-card-title,
.dash-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-card-icon-box,
.dash-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.summary-card:hover .summary-card-icon-box,
.dash-stat-card:hover .dash-stat-icon {
  transform: scale(1.06);
}

.summary-card-value,
.dash-stat-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-card-link,
.dash-stat-link {
  font-size: 0.76rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 0.45rem;
  white-space: nowrap;
  transition: gap 0.18s ease, color 0.18s ease;
}

.summary-card-link:hover,
.dash-stat-link:hover {
  gap: 7px;
  color: #1d4ed8;
  text-decoration: none;
}

/* Mobile Stat Card Adjustments */
@media (max-width: 576px) {
  .summary-card,
  .dash-stat-card {
    padding: 0.75rem 0.85rem !important;
    border-radius: 12px !important;
    min-height: 84px !important;
  }
  .summary-card-title,
  .dash-stat-label {
    font-size: 0.6rem !important;
    letter-spacing: 0.03em !important;
    margin-bottom: 0.15rem !important;
  }
  .summary-card-value,
  .dash-stat-val {
    font-size: 1.15rem !important;
  }
  .summary-card-icon-box,
  .dash-stat-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
  }
  .summary-card-link,
  .dash-stat-link {
    font-size: 0.68rem !important;
    padding-top: 0.25rem !important;
  }
}

/* 2. Modern Minimalist Section Card Container */
.dash-section-card {
  background: var(--bg-surface, #ffffff);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.row > [class*="col-"] > .dash-section-card:only-child {
  height: 100%;
}

.dash-toolbar-card {
  background: var(--bg-surface, #ffffff);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  margin-bottom: 1.25rem;
}

.dash-section-card:hover,
.dash-toolbar-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.dash-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.dash-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin: 0;
  display: flex;
  align-items: center;
}

/* 3. Services List in Dashboard */
.dash-service-item {
  padding: 0.65rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}

.dash-service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dash-service-link {
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  font-size: 0.82rem;
  display: block;
  margin-bottom: 2px;
  transition: color 0.15s ease;
}

.dash-service-link:hover {
  color: #2563eb;
  text-decoration: none;
}

.dash-service-sub {
  font-size: 0.72rem;
  color: #64748b;
  display: block;
}

/* 4. Dynamic Modern Status Pill Badges */
.badge-st-active {
  background-color: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.badge-st-active::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #10b981;
}

.badge-st-pending {
  background-color: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.badge-st-pending::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #f59e0b;
}

.badge-st-suspended {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.badge-st-suspended::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ef4444;
}

.badge-st-cancelled {
  background-color: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.badge-st-cancelled::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #94a3b8;
}

/* 5. Live Resource Usage Metric Bars */
.dash-progress-track {
  height: 7px;
  background-color: #f1f5f9;
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 5px;
}

.dash-progress-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dash-metric-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}

.dash-metric-val {
  font-size: 0.78rem;
  font-weight: 700;
}

.btn-refresh-metrics {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  border-radius: 9px;
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-refresh-metrics:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
}

/* 6. Quick Launch Action Rows */
.dash-launch-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  text-decoration: none;
  margin-bottom: 0.55rem;
  transition: all 0.2s ease;
}

.dash-launch-item:last-child {
  margin-bottom: 0;
}

.dash-launch-item:hover {
  border-color: #93c5fd;
  background-color: #f8fafc;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
}

.dash-launch-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* 7. Account Overview Information Rows */
.dash-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.2rem;
  border-bottom: 1px solid #f1f5f9;
}

.dash-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dash-info-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

.dash-info-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

/* Global Keyframe Spinner */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Modern Minimalist Services & Data Table Component Styles
   ========================================================================== */

/* 1. Filter Pill Navigation */
.filter-pill-btn {
  border-radius: 9999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  white-space: nowrap;
}

.filter-pill-btn:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.filter-pill-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.filter-pill-btn.active-success {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.filter-pill-btn.active-warning {
  background: #f59e0b;
  color: #ffffff;
  border-color: #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.filter-pill-btn.active-danger {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.filter-pill-btn.active-secondary {
  background: #64748b;
  color: #ffffff;
  border-color: #64748b;
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.25);
}

/* 2. Search Pill Input */
.search-input-pill {
  border-radius: 9999px 0 0 9999px !important;
  font-size: 0.8rem !important;
  padding-left: 1.15rem !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-right: none !important;
  box-shadow: none !important;
  transition: border-color 0.15s ease;
}

.search-input-pill:focus {
  border-color: #3b82f6 !important;
  background: #ffffff !important;
}

.btn-search-pill {
  border-radius: 0 9999px 9999px 0 !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 0.42rem 1.15rem !important;
  background: #2563eb !important;
  color: #ffffff !important;
  border: 1px solid #2563eb !important;
  transition: all 0.18s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-search-pill:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
}

/* 3. Action Buttons */
.btn-order-new {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.48rem 1.35rem;
  border-radius: 9999px;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.btn-order-new:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  color: #ffffff !important;
  text-decoration: none;
}

.btn-manage-service {
  background: #eff6ff;
  color: #2563eb !important;
  border: 1px solid #bfdbfe;
  border-radius: 9999px;
  padding: 0.32rem 0.95rem;
  font-weight: 700;
  font-size: 0.76rem;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.btn-manage-service:hover {
  background: #2563eb;
  color: #ffffff !important;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  text-decoration: none;
}

/* 4. Table & Pagination Styling */
.dash-table-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

.dash-table th {
  background-color: #f8fafc;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.dash-table td {
  padding: 0.75rem 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.dash-table tr:last-child td {
  border-bottom: none;
}

.dash-table tr:hover td {
  background-color: #f8fafc;
}

.pagination .page-link {
  color: #475569;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  font-size: 0.76rem;
  font-weight: 600;
  transition: all 0.15s ease;
}

.pagination .page-item.active .page-link {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.pagination .page-link:hover {
  background-color: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

/* 5. Mobile Service Card Items */
.dash-mobile-service-item {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
  transition: background 0.15s ease;
}

.dash-mobile-service-item:last-child {
  border-bottom: none;
}

.dash-mobile-service-item:hover {
  background: #f8fafc;
}

/* ==========================================================================
   6. Domain Portal & Ordering Styles (domain.php)
   ========================================================================== */
.domain-top-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.84rem;
  color: #475569;
  text-decoration: none;
  transition: all 0.15s ease;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.domain-top-tab:hover {
  background: #f1f5f9;
  color: #2563eb;
}

.domain-top-tab.active {
  background: #2563eb;
  color: #ffffff !important;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.22);
}

.domain-search-box {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 6px 8px 6px 18px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.domain-search-box:focus-within {
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

.domain-search-input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  font-size: 0.92rem;
  font-weight: 500;
  color: #0f172a;
}

.tld-pill-badge {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
}

.tld-pill-badge:hover {
  background: #eff6ff;
  border-color: #2563eb;
  color: #2563eb;
}

.domain-sug-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: all 0.15s ease;
}

.domain-sug-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
}

.floating-cart-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  background: #2563eb;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.floating-cart-btn:hover {
  background: #1d4ed8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

@media (max-width: 575.98px) {
  .domain-search-box {
    border-radius: 16px;
    padding: 10px 12px;
    flex-direction: column;
    gap: 8px;
  }
  .domain-search-box .btn {
    width: 100%;
    border-radius: 12px !important;
  }
}

/* 7. Domain Transfer Portal Aesthetics (Compact Dashboard Proportions) */
.transfer-search-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 4px 6px 4px 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.transfer-search-box:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.transfer-search-divider {
  width: 1px;
  height: 20px;
  background-color: #e2e8f0;
  flex-shrink: 0;
}

.transfer-input {
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1e293b;
  padding: 0.25rem 0.35rem;
  width: 100%;
}

.transfer-input::placeholder {
  color: #94a3b8;
  font-size: 0.8rem;
}

.transfer-input:focus {
  outline: none;
  box-shadow: none;
}

/* Browser Graphic Illustration - Compact */
.transfer-graphic-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 14px 14px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  max-width: 190px;
  width: 100%;
}

.transfer-browser-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.transfer-browser-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.transfer-browser-url {
  flex-grow: 1;
  background: #f1f5f9;
  border-radius: 20px;
  padding: 1px 6px;
  font-size: 0.6rem;
  color: #64748b;
  font-family: monospace;
}

.transfer-browser-body {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 1px;
}

.transfer-globe-circle {
  width: 26px;
  height: 26px;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.transfer-skeleton-lines {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.transfer-skel-line {
  height: 4px;
  background: #e2e8f0;
  border-radius: 3px;
}

/* Floating TLD Badges - Compact */
.floating-tld-badge {
  position: absolute;
  padding: 2px 7px;
  border-radius: 20px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.6rem;
  font-family: monospace;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* Circular TLD Badges in Table - Compact */
.tld-circle-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .domain-top-tab {
    padding: 5px 12px;
    font-size: 12.5px;
    white-space: nowrap;
  }
  .transfer-search-box {
    border-radius: 12px;
    padding: 8px 10px;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }
  .transfer-search-box .transfer-input {
    font-size: 13px;
    padding: 4px 6px;
  }
  .transfer-search-divider {
    width: 100%;
    height: 1px;
    margin: 1px 0;
    background-color: #f1f5f9;
  }
  .transfer-search-box .btn {
    width: 100%;
    border-radius: 8px !important;
    font-size: 12.5px !important;
    padding: 7px 12px !important;
  }
  .floating-cart-btn {
    bottom: 16px;
    right: 16px;
    font-size: 12px;
    padding: 8px 14px;
  }
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 8. Modern Minimalist Side Cart Drawer (Light Theme) */
.side-cart-offcanvas {
  width: 400px !important;
  max-width: 92vw !important;
  background-color: #ffffff !important;
  border-left: 1px solid #e2e8f0 !important;
  box-shadow: -12px 0 35px rgba(15, 23, 42, 0.08) !important;
}

.side-cart-header {
  padding: 1rem 1.25rem !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #f1f5f9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.side-cart-icon-badge {
  width: 38px !important;
  height: 38px !important;
  background: #eff6ff !important;
  color: #2563eb !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  flex-shrink: 0 !important;
}

.side-cart-section-label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.6rem !important;
  padding-left: 0.15rem !important;
}

.side-cart-item-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02) !important;
  display: block !important;
}

.side-cart-item-card:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05) !important;
  transform: translateY(-1px) !important;
}

.side-cart-item-title {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.35 !important;
  margin-bottom: 0.25rem !important;
  display: block !important;
}

.side-cart-meta-pill {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: #64748b !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  padding: 2px 8px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.side-cart-price {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: #2563eb !important;
  font-family: monospace !important;
}

.side-cart-btn-trash {
  width: 28px !important;
  height: 28px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  color: #94a3b8 !important;
  border: 1px solid transparent !important;
  transition: all 0.15s ease !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}

.side-cart-btn-trash:hover {
  background: #fef2f2 !important;
  color: #ef4444 !important;
  border-color: #fee2e2 !important;
}

.side-cart-footer {
  background: #ffffff !important;
  border-top: 1px solid #f1f5f9 !important;
  padding: 1rem 1.25rem !important;
}

.side-cart-total-value {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  font-family: monospace !important;
}

.side-cart-empty-state {
  text-align: center !important;
  padding: 3rem 1.5rem !important;
  margin: auto 0 !important;
}

.side-cart-empty-icon {
  width: 56px !important;
  height: 56px !important;
  background: #f1f5f9 !important;
  color: #94a3b8 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.6rem !important;
  margin: 0 auto 1rem !important;
}

/* ==========================================================================
   SECTION 9: MODERN MINIMALIST LIGHT THEME SIDEBAR
   ========================================================================== */
.customer-sidebar-desktop {
  width: 250px !important;
  background: #ffffff !important;
  border-right: 1px solid #eef2f6 !important;
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 100 !important;
  padding: 1.15rem 0.85rem !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(203, 213, 225, 0.5) transparent !important;
  box-shadow: 1px 0 4px rgba(15, 23, 42, 0.02) !important;
}

@media (max-width: 991.98px) {
  .customer-sidebar-desktop {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
  }
  .main-content-wrapper {
    margin-left: 0 !important;
    width: 100% !important;
  }
}

.customer-sidebar-desktop::-webkit-scrollbar,
.customer-sidebar-offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 4px;
}
.customer-sidebar-desktop::-webkit-scrollbar-track,
.customer-sidebar-offcanvas .offcanvas-body::-webkit-scrollbar-track {
  background: transparent;
}
.customer-sidebar-desktop::-webkit-scrollbar-thumb,
.customer-sidebar-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.customer-sidebar-desktop::-webkit-scrollbar-thumb:hover,
.customer-sidebar-offcanvas .offcanvas-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Brand Section */
.cust-brand {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  padding: 0.25rem 0.5rem 1.15rem !important;
  margin-bottom: 0.65rem !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.cust-brand-img {
  max-height: 36px !important;
  max-width: 190px !important;
  object-fit: contain !important;
  display: block !important;
}

.cust-brand-icon {
  width: 36px !important;
  height: 36px !important;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.25) !important;
  flex-shrink: 0 !important;
}

.cust-brand-text {
  font-weight: 800 !important;
  font-size: 1.22rem !important;
  color: #0f172a !important;
  letter-spacing: -0.025em !important;
  text-decoration: none !important;
}

.cust-brand-text .brand-accent {
  color: #2563eb !important;
}

.cust-brand-text .brand-dot {
  color: #2563eb !important;
  font-weight: 900 !important;
}

/* Section Title */
.nav-section-title {
  font-size: 0.64rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.09em !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  padding: 0.85rem 0.65rem 0.3rem !important;
}

/* Nav Link (Minimalist Light Theme Item) */
.cust-nav-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.5rem 0.75rem !important;
  color: #475569 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  border-radius: 10px !important;
  margin-bottom: 2px !important;
  height: 38px !important;
  transition: all 0.15s ease !important;
  position: relative !important;
}

.cust-nav-link:hover {
  background: #f8fafc !important;
  color: #2563eb !important;
}

.cust-nav-link.active {
  background: #eff6ff !important;
  color: #2563eb !important;
  font-weight: 700 !important;
}

.cust-nav-link i.cust-nav-icon {
  font-size: 1.05rem !important;
  width: 20px !important;
  text-align: center !important;
  flex-shrink: 0 !important;
  margin-right: 10px !important;
  color: #64748b !important;
  transition: color 0.15s ease !important;
}

.cust-nav-link:hover i.cust-nav-icon,
.cust-nav-link.active i.cust-nav-icon {
  color: #2563eb !important;
}

/* Submenu container & links */
.cust-nav-sub-container {
  margin-left: 1.25rem !important;
  padding-left: 0.6rem !important;
  border-left: 1.5px solid #e2e8f0 !important;
  margin-top: 2px !important;
  margin-bottom: 4px !important;
}

.cust-nav-sub-link {
  display: flex !important;
  align-items: center !important;
  padding: 0.38rem 0.65rem !important;
  color: #475569 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 0.8rem !important;
  border-radius: 8px !important;
  margin-bottom: 2px !important;
  white-space: nowrap !important;
  transition: all 0.15s ease !important;
}

.cust-nav-sub-link i {
  font-size: 0.88rem !important;
  width: 18px !important;
  text-align: center !important;
  flex-shrink: 0 !important;
  margin-right: 7px !important;
  color: #64748b !important;
  transition: color 0.15s ease !important;
}

.cust-nav-sub-link:hover {
  background: #f8fafc !important;
  color: #2563eb !important;
}

.cust-nav-sub-link:hover i {
  color: #2563eb !important;
}

.cust-nav-sub-link.active {
  background: #eff6ff !important;
  color: #2563eb !important;
  font-weight: 700 !important;
}

.cust-nav-sub-link.active i {
  color: #2563eb !important;
}

/* Mobile Offcanvas Drawer (Clean White Light Theme) */
.customer-sidebar-offcanvas {
  width: 270px !important;
  background: #ffffff !important;
  border-right: 1px solid #e2e8f0 !important;
}

.customer-sidebar-offcanvas .offcanvas-header {
  padding: 1rem 1.15rem !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.customer-sidebar-offcanvas .offcanvas-body {
  padding: 1rem 0.85rem !important;
}




