/* ==========================================================================
   CoolTechDesk SaaS - Advanced UI Components (Vuexy Ultra Pro)
   ========================================================================== */

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0.75rem; }
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 0.75rem; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0.75rem; }
.col-3 { flex: 0 0 25%; max-width: 25%; padding: 0.75rem; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0.75rem; }
.col-9 { flex: 0 0 75%; max-width: 75%; padding: 0.75rem; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; padding: 0.75rem; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; padding: 0.75rem; }

@media (max-width: 991.98px) {
  .col-4, .col-3, .col-8, .col-9, .col-5, .col-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Flex Utilities */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline-flex { display: inline-flex !important; }
.flex-column { flex-direction: column !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.justify-end { justify-content: flex-end !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.flex-wrap { flex-wrap: wrap !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }

/* Text Utilities */
.text-muted { color: var(--text-muted) !important; }
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-info { color: var(--info) !important; }
.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-medium { font-weight: 500 !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* Cards (Vuexy Card Style) */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  transition: var(--transition);
  height: auto !important;
}

.settings-tab-pane .card {
  height: auto !important;
  margin-bottom: 1.25rem;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-header {
  padding: 1.25rem 1.5rem 0.75rem;
  margin-bottom: 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  margin-bottom: 0;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem 1.5rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: transparent;
  border-top: 1px solid var(--border-subtle);
}

/* Stat Cards */
.stat-card-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.card:hover .stat-icon {
  transform: scale(1.08);
}
.stat-icon.primary { background: var(--primary-light); color: var(--primary); }
.stat-icon.success { background: var(--success-light); color: var(--success); }
.stat-icon.warning { background: var(--warning-light); color: var(--warning); }
.stat-icon.info { background: var(--info-light); color: var(--info); }
.stat-icon.danger { background: var(--danger-light); color: var(--danger); }

.stat-value {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.4;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 2px 6px var(--primary-glow);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-secondary {
  background-color: var(--secondary-light);
  border-color: transparent;
  color: var(--text-main);
}
.btn-secondary:hover {
  background-color: var(--border-color);
  color: var(--text-heading);
}

.btn-success {
  background-color: var(--success);
  border-color: var(--success);
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(40, 199, 111, 0.3);
}
.btn-success:hover {
  background-color: #24b263;
  color: #FFFFFF;
}

.btn-danger {
  background-color: var(--danger);
  border-color: var(--danger);
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(234, 84, 85, 0.3);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background-color: var(--primary-light);
}

.btn-outline-secondary {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-main);
}
.btn-outline-secondary:hover {
  background-color: var(--bg-subtle);
  border-color: var(--text-muted);
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: capitalize;
}

.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: var(--success-light); color: var(--success); }
.badge-warning { background: var(--warning-light); color: var(--warning); }
.badge-danger { background: var(--danger-light); color: var(--danger); }
.badge-info { background: var(--info-light); color: var(--info); }
.badge-secondary { background: var(--secondary-light); color: var(--secondary); }

/* Tables (Vuexy Data Table) */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.table th {
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.table td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.table tbody tr {
  transition: var(--transition);
}

.table tbody tr:hover {
  background-color: var(--bg-subtle);
}

/* Form Controls */
.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  display: block;
  width: 100%;
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-heading);
  background-color: var(--bg-input);
  background-clip: padding-box;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.input-group {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-left: 0;
  border-top-right-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  cursor: pointer;
}

/* Modals */
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(5px);
  z-index: 1050;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-backdrop.show {
  display: flex;
  opacity: 1;
}

.modal-dialog {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 560px;
  transform: translateY(-20px);
  transition: transform 0.25s ease;
  overflow: hidden;
}

.modal-dialog.modal-lg {
  max-width: 860px;
}

.modal-backdrop.show .modal-dialog {
  transform: translateY(0);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-heading);
}

.btn-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-close:hover {
  color: var(--danger);
  background: var(--danger-light);
}

.modal-body {
  padding: 1.5rem;
  max-height: calc(85vh - 120px);
  overflow-y: auto;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  background: var(--bg-subtle);
}

/* Spotlight Command Palette (Ctrl+K) */
.command-palette-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
}
.command-palette-backdrop.show {
  display: flex;
}
.command-palette-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 620px;
  overflow: hidden;
}
.command-palette-search {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}
.command-palette-search input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  color: var(--text-heading);
  outline: none;
}
.command-palette-results {
  max-height: 380px;
  overflow-y: auto;
  padding: 0.75rem 0;
}
.command-palette-group-title {
  padding: 0.4rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.command-palette-item {
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-main);
  text-decoration: none;
}
.command-palette-item:hover, .command-palette-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* Remote Support Desktop Simulator Window */
.remote-screen-mockup {
  background: #0F172A;
  border-radius: var(--radius-md);
  border: 2px solid #334155;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.remote-screen-topbar {
  background: #1E293B;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #334155;
  color: #E2E8F0;
  font-size: 0.82rem;
}
.remote-screen-canvas {
  height: 280px;
  background: linear-gradient(135deg, #0A192F 0%, #1E3A8A 50%, #0F172A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
.remote-screen-tools {
  background: #1E293B;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dropdown);
  padding: 0.85rem 1.25rem;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateX(0);
}
.toast.toast-success { border-left-color: var(--success); }
.toast.toast-danger { border-left-color: var(--danger); }
.toast.toast-warning { border-left-color: var(--warning); }
.toast.toast-info { border-left-color: var(--info); }

/* Template Customizer Floating Drawer (Ultra Pro 60+ Features) */
.template-customizer {
  position: fixed;
  right: -460px;
  top: 0;
  bottom: 0;
  width: 440px;
  max-width: 95vw;
  background: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  z-index: 2050;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.template-customizer.open {
  right: 0;
}

.customizer-toggle-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--brand-orange) 100%);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
  box-shadow: 0 4px 20px var(--primary-glow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 1.15rem;
  z-index: 1040;
  animation: pulse-gear 2.5s infinite;
}

.customizer-toggle-badge {
  font-size: 0.55rem;
  font-weight: 800;
  background: #fff;
  color: var(--primary);
  border-radius: 4px;
  padding: 1px 3px;
  line-height: 1;
}

@keyframes pulse-gear {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.06); }
}

.customizer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
}

.customizer-search-box {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-card);
}
.customizer-search-box input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.85rem;
  color: var(--text-heading);
}

/* Category Filter Tabs Bar */
.customizer-category-nav {
  display: flex;
  overflow-x: auto;
  padding: 0.5rem 0.75rem;
  gap: 0.35rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
  -webkit-overflow-scrolling: touch;
}
.customizer-cat-tab {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: var(--transition);
}
.customizer-cat-tab:hover {
  color: var(--primary);
}
.customizer-cat-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px var(--primary-glow);
}

.customizer-body {
  flex: 1 1 auto;
  padding: 1.25rem;
  overflow-y: auto;
}

.customizer-section-group {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border-subtle);
}

.customizer-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-heading);
  margin-bottom: 1rem;
}
.customizer-group-header i {
  color: var(--primary);
}

.customizer-feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.feature-label {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-heading);
}
.feature-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Switch Toggle Component */
.form-switch-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.form-switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: .25s;
  border-radius: 22px;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .25s;
  border-radius: 50%;
}
.form-switch-toggle input:checked + .switch-slider {
  background-color: var(--primary);
}
.form-switch-toggle input:checked + .switch-slider:before {
  transform: translateX(20px);
}

/* Customizer Option Chips Grid */
.customizer-chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.customizer-chip-btn {
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.customizer-chip-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.customizer-chip-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

/* Customizer Color Dot Swatches */
.customizer-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.customizer-color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s;
  position: relative;
}
.customizer-color-swatch:hover, .customizer-color-swatch.active {
  transform: scale(1.15);
  border-color: var(--text-heading);
}
.customizer-color-swatch.active::after {
  content: '✓';
  position: absolute;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Range Slider */
.customizer-range-slider {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Customizer Footer Quick Action Strip */
.customizer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
  display: flex;
  gap: 0.6rem;
}

/* RTL Support Class */
body[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
body[dir="rtl"] .layout-sidebar {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid var(--border-subtle);
}
body[dir="rtl"] .layout-page {
  padding-left: 0;
  padding-right: var(--sidebar-width);
}
body[dir="rtl"].sidebar-collapsed .layout-page {
  padding-right: var(--sidebar-collapsed-width);
}

/* High Contrast Class */
body.high-contrast {
  --border-color: #000;
  --text-main: #000;
  --text-heading: #000;
  filter: contrast(115%);
}
[data-theme="dark"] body.high-contrast {
  --border-color: #FFF;
  --text-main: #FFF;
  --text-heading: #FFF;
  filter: contrast(125%);
}

/* Card Glow Effect */
body.card-glow-active .card {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px var(--primary-glow);
}

/* ==========================================================================
   ADVANCED 50+ ADDITIONAL CUSTOMIZER FEATURE STYLES (TOTAL 120+ FEATURES)
   ========================================================================== */

/* 1. Monochromatic & Pastel Filters */
body.monochrome-mode {
  filter: grayscale(100%) !important;
}
body.pastel-mode {
  filter: saturate(80%) brightness(105%) !important;
}
body.cyberpunk-mode {
  --primary: #00FFCC !important;
  --primary-glow: rgba(0, 255, 204, 0.6) !important;
  --brand-orange: #FF007F !important;
}
[data-theme="dark"] body.cyberpunk-mode {
  --bg-body: #05050A !important;
  --bg-card: #0F0F1E !important;
  --border-color: #00FFCC !important;
}

/* Dark Mode Background Shade Variants */
[data-theme="dark"] body[data-dark-shade="pitch"] {
  --bg-body: #000000 !important;
  --bg-card: #0A0A0A !important;
  --bg-sidebar: #0A0A0A !important;
  --bg-header: rgba(10, 10, 10, 0.92) !important;
  --border-color: #1F1F1F !important;
}
[data-theme="dark"] body[data-dark-shade="navy"] {
  --bg-body: #070D1B !important;
  --bg-card: #0E172E !important;
  --bg-sidebar: #0E172E !important;
  --bg-header: rgba(14, 23, 46, 0.92) !important;
  --border-color: #1E293B !important;
}

/* 2. Button Corner Styles */
body[data-btn-style="sharp"] .btn { border-radius: 0px !important; }
body[data-btn-style="rounded"] .btn { border-radius: 6px !important; }
body[data-btn-style="smooth"] .btn { border-radius: 12px !important; }
body[data-btn-style="pill"] .btn { border-radius: 999px !important; }

/* Button Glow & Ripples */
body.btn-glow-active .btn-primary {
  box-shadow: 0 4px 18px var(--primary-glow) !important;
}

/* 3. Input Variants */
body[data-input-style="filled"] .form-control,
body[data-input-style="filled"] .form-select {
  background: var(--bg-subtle) !important;
  border-color: transparent !important;
}
body[data-input-style="underline"] .form-control,
body[data-input-style="underline"] .form-select {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0px !important;
  background: transparent !important;
}

/* 4. Sidebar Gradient & Icons */
body.sidebar-gradient-active .layout-sidebar {
  background: linear-gradient(180deg, var(--bg-sidebar) 0%, rgba(var(--primary-rgb), 0.08) 100%) !important;
}

/* 5. Live Pulse Dot on Active Badges */
body.pulse-badges-active .badge-success::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  margin-right: 5px;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
}

/* 6. High Visibility Keyboard Focus Ring */
body.a11y-focus-active :focus-visible {
  outline: 3px solid #00E5FF !important;
  outline-offset: 2px !important;
}

/* 7. Live FPS Monitor HUD */
.fps-counter-hud {
  position: fixed;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: #00FF66;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 99999;
  border: 1px solid #00FF66;
  pointer-events: none;
  display: none;
}
.fps-counter-hud.show {
  display: block;
}

/* 8. Reading Guide Ruler */
.reading-guide-ruler {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 65, 108, 0.85);
  box-shadow: 0 0 10px rgba(255, 65, 108, 0.8);
  pointer-events: none;
  z-index: 99998;
  display: none;
}
.reading-guide-ruler.show {
  display: block;
}

/* ==========================================================================
   30 NEW CUSTOMIZER FEATURES — CSS RULES
   ========================================================================== */

/* ---------- Cat 14: Animations & Motion ---------- */

/* F1: Page Transition Styles */
body[data-page-transition="fade"] {
  animation: pageTransFade 0.4s ease-out;
}
body[data-page-transition="slide"] {
  animation: pageTransSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body[data-page-transition="scale"] {
  animation: pageTransScale 0.35s ease-out;
}
@keyframes pageTransFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pageTransSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pageTransScale {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* F2: Hover Animation Intensity — controlled via CSS variable */
:root {
  --hover-intensity: 1;
}
body[data-hover-intensity] .card:hover {
  transform: translateY(calc(-4px * var(--hover-intensity))) scale(calc(1 + 0.01 * var(--hover-intensity)));
}
body[data-hover-intensity] .btn:hover {
  transform: translateY(calc(-1px * var(--hover-intensity)));
}

/* F3: Smooth Scroll — toggled via class */
body.smooth-scroll-active {
  scroll-behavior: smooth !important;
}
body.smooth-scroll-active * {
  scroll-behavior: smooth !important;
}

/* F4: Sidebar Open Animation */
body[data-sidebar-anim="fade"] .layout-sidebar {
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}
body[data-sidebar-anim="scale"] .layout-sidebar {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
body[data-sidebar-anim="scale"].sidebar-open .layout-sidebar {
  transform: scale(1) !important;
}

/* F5: Reduce Motion (A11y) */
body.reduce-motion-active *,
body.reduce-motion-active *::before,
body.reduce-motion-active *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* ---------- Cat 15: Mobile & Responsive ---------- */

/* F6: Mobile Dock Styles */
@media (max-width: 768px) {
  body[data-dock-style="bar"] .mobile-only-app-nav {
    border-radius: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border: none !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
  }
  body[data-dock-style="minimal"] .mobile-only-app-nav {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(40px) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.3rem 0.5rem !important;
  }
  body[data-dock-style="minimal"] .mobile-nav-tab span {
    display: none !important;
  }

  /* F7: Mobile Dock Position */
  body[data-dock-pos="floating"] .mobile-only-app-nav {
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
  }

  /* F10: Mobile Font Boost */
  body.mobile-font-boost {
    font-size: 16px !important;
  }
}

/* ---------- Cat 16: Notifications & Alerts ---------- */

/* F11: Toast Position Variants */
body[data-toast-pos="top-left"] .toast-container {
  left: 20px !important;
  right: auto !important;
}
body[data-toast-pos="bottom-right"] .toast-container {
  top: auto !important;
  bottom: 20px !important;
}
body[data-toast-pos="bottom-center"] .toast-container {
  top: auto !important;
  bottom: 20px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  align-items: center !important;
}

/* F13: Toast Style Variants */
body[data-toast-style="filled"] .toast {
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
}
body[data-toast-style="filled"] .toast span {
  color: #fff !important;
}
body[data-toast-style="minimal"] .toast {
  background: var(--bg-card) !important;
  border: none !important;
  border-left: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* ---------- Cat 17: Security & Privacy ---------- */

/* F17: Blur Sensitive Data */
body.blur-sensitive-active .stat-value,
body.blur-sensitive-active [data-sensitive],
body.blur-sensitive-active .card-body .stat-value {
  filter: blur(6px) !important;
  transition: filter 0.3s ease !important;
  cursor: pointer;
}
body.blur-sensitive-active .stat-value:hover,
body.blur-sensitive-active [data-sensitive]:hover,
body.blur-sensitive-active .card-body .stat-value:hover {
  filter: blur(0) !important;
}

/* F18: Screen Privacy Shield */
body.privacy-shield-active {
  filter: brightness(0.75) contrast(1.1) !important;
}
body.privacy-shield-active::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 99997;
}

/* ---------- Existing Category Enhancements ---------- */

/* F23: Heading Text Transform */
body[data-heading-transform="uppercase"] h1,
body[data-heading-transform="uppercase"] h2,
body[data-heading-transform="uppercase"] h3,
body[data-heading-transform="uppercase"] h4,
body[data-heading-transform="uppercase"] .card-title {
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
}
body[data-heading-transform="capitalize"] h1,
body[data-heading-transform="capitalize"] h2,
body[data-heading-transform="capitalize"] h3,
body[data-heading-transform="capitalize"] h4,
body[data-heading-transform="capitalize"] .card-title {
  text-transform: capitalize !important;
}

/* F24: Card Border Width */
body[data-card-border="none"] .card {
  border: none !important;
}
body[data-card-border="medium"] .card {
  border-width: 2px !important;
}
body[data-card-border="thick"] .card {
  border-width: 3px !important;
}

/* F25: Card Hover Lift */
body.card-hover-lift-active .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
body.card-hover-lift-active .card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* F26: Sticky Table Headers */
body.table-sticky-header-active .table thead th {
  position: sticky !important;
  top: 0 !important;
  z-index: 5 !important;
  background-color: var(--bg-card) !important;
  box-shadow: 0 1px 0 var(--border-subtle) !important;
}

/* F27: Table Row Hover Highlight Colors */
body[data-table-hover="primary"] .table tbody tr:hover {
  background-color: var(--primary-light) !important;
}
body[data-table-hover="success"] .table tbody tr:hover {
  background-color: var(--success-light) !important;
}

/* F28: CSS Grid Debugger Overlay */
body.grid-debugger-active::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(115, 103, 240, 0.08) 49px, rgba(115, 103, 240, 0.08) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(115, 103, 240, 0.08) 49px, rgba(115, 103, 240, 0.08) 50px);
  pointer-events: none;
  z-index: 99996;
}

/* F30: Page Load Timer Badge */
.page-load-badge {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: #00CFE8;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 99999;
  border: 1px solid rgba(0, 207, 232, 0.3);
  pointer-events: none;
  display: none;
}
.page-load-badge.show {
  display: block;
}

/* ==========================================================================
   SYSTEM & CONFIG - TABBED MANAGEMENT SUITE STYLES
   ========================================================================== */

/* Settings Nav Tabs */
.settings-tabs-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.settings-nav-tabs {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.settings-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.settings-tab-btn:hover {
  color: var(--text-heading);
  background: var(--bg-subtle);
}

.settings-tab-btn.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.settings-tab-btn .tab-badge {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
}

/* Tab Panes */
.settings-tab-content > .settings-tab-pane {
  display: none;
  animation: fadeInPane 0.25s ease-out;
}

.settings-tab-content > .settings-tab-pane.active {
  display: block;
}

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

/* Payment Gateway Cards */
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.gateway-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.gateway-card.active-gateway {
  border-color: var(--primary);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.gateway-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.gateway-brand-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gateway-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.gateway-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.gateway-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Dropzone and File Upload Previews */
.upload-dropzone-box {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-subtle);
  cursor: pointer;
  transition: all 0.25s ease;
}

.upload-dropzone-box:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.upload-dropzone-box i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.logo-preview-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F172A;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  min-height: 100px;
  margin-top: 0.75rem;
}

/* QR Code Display Container */
.qr-preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  color: #0F172A;
  text-align: center;
}

.qr-code-box {
  background: #FFFFFF;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 0.75rem;
}

/* Crypto Wallet Address Cards */
.crypto-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.crypto-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.crypto-address-text {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  background: var(--bg-subtle);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--primary);
  border: 1px solid var(--border-subtle);
  word-break: break-all;
}

/* SMS & WhatsApp Provider Rows */
.provider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}

.provider-row:hover {
  border-color: var(--primary);
}

.provider-row.provider-active {
  border-left: 4px solid var(--success);
}

/* Email Template Visual Preview Box */
.template-preview-box {
  background: #FFFFFF;
  color: #1E293B;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  min-height: 250px;
  max-height: 380px;
  overflow-y: auto;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

/* Code Editor Textarea */
.code-editor-textarea {
  font-family: 'Courier New', Consolas, monospace;
  font-size: 0.85rem;
  background: #0F172A;
  color: #38BDF8;
  border: 1px solid #1E293B;
  border-radius: var(--radius-md);
  padding: 1rem;
  width: 100%;
  min-height: 180px;
  resize: vertical;
  line-height: 1.5;
}

.code-editor-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

/* ==========================================================================
   BRAND & BANNER STUDIO UI COMPONENTS
   ========================================================================== */

/* Brand Asset Card */
.brand-asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  transition: all 0.25s ease;
}

.brand-asset-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.brand-asset-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

/* Browser Tab Mockup Preview */
.mockup-browser-window {
  background: #1E293B;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #334155;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mockup-browser-header {
  background: #0F172A;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-browser-dots {
  display: flex;
  gap: 4px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: #10B981; }

.mockup-browser-tab-item {
  background: #1E293B;
  color: #F8FAFC;
  padding: 4px 10px;
  border-radius: 6px 6px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  max-width: 200px;
}

.mockup-browser-tab-item .tab-close {
  color: #94A3B8;
  font-size: 0.65rem;
  margin-left: 6px;
}

.mockup-browser-urlbar {
  background: #0F172A;
  color: #94A3B8;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-family: monospace;
  margin: 6px 12px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #334155;
}

/* Hero Banner Live Mockup Card */
.mockup-hero-banner-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 140px;
  background: linear-gradient(135deg, #0B132B, #002B49);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
}

.mockup-hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.mockup-hero-banner-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 85%;
}

.dropzone-interactive {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  background: var(--bg-subtle);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropzone-interactive:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

/* ==========================================================================
   GLOBAL SCROLL-TO-TOP ANIMATED CYBER BUTTON
   Works on: Landing, Admin, User, and all portal pages.
   Skipped on: Auth pages (login, register, forgot/reset — injected by JS).
   ========================================================================== */
.scroll-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1035;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(135deg, #7367F0 0%, #0284C7 50%, #EA580C 100%);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 22px rgba(115, 103, 240, 0.45),
    0 0 16px rgba(2, 132, 199, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.75);
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  outline: none;
  overflow: visible;
  padding: 0;
}

/* ---- Visible state ---- */
.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ---- Hover & Active ---- */
.scroll-to-top-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow:
    0 10px 32px rgba(115, 103, 240, 0.65),
    0 0 24px rgba(0, 242, 254, 0.6),
    0 0 0 5px rgba(115, 103, 240, 0.18);
  background: linear-gradient(135deg, #6355E8 0%, #0270A8 50%, #FF512F 100%);
}

.scroll-to-top-btn:active {
  transform: translateY(0) scale(0.93);
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.4);
  transition-duration: 0.1s;
}

/* ---- Focus ring (keyboard accessibility) ---- */
.scroll-to-top-btn:focus-visible {
  outline: 2px solid #00F2FE;
  outline-offset: 4px;
}

/* ---- Centered Icon Box ---- */
.scroll-to-top-btn .stt-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.scroll-to-top-btn .stt-main-arrow {
  font-size: 1.15rem;
  color: #FFFFFF;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* On Hover: Smooth Arrow Bounce */
.scroll-to-top-btn:hover .stt-main-arrow {
  animation: sttArrowFloat 0.9s infinite alternate ease-in-out;
}

@keyframes sttArrowFloat {
  0% { transform: translateY(1px); }
  100% { transform: translateY(-4px); }
}

/* ---- Launch Thrust Click State ---- */
.scroll-to-top-btn.stt-launching {
  animation: sttRocketLaunch 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes sttRocketLaunch {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 30px #00F2FE, 0 0 50px #FF512F;
  }
  25% {
    transform: translateY(5px) scale(0.92);
  }
  50% {
    transform: translateY(-20px) scale(1.12);
    opacity: 0.95;
  }
  100% {
    transform: translateY(-65px) scale(0.4);
    opacity: 0;
  }
}

/* ---- Animated pulsing outer aura ring ---- */
.scroll-to-top-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(0, 242, 254, 0.45);
  opacity: 0;
  animation: sttRingPulse 2.6s ease-in-out infinite;
  pointer-events: none;
}

.scroll-to-top-btn.visible::after {
  opacity: 1;
}

/* ---- SVG scroll progress ring ---- */
.scroll-to-top-btn .stt-progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
}

.scroll-to-top-btn .stt-bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 2.6;
}

.scroll-to-top-btn .stt-active-circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.12s ease;
  filter: drop-shadow(0 0 4px rgba(0, 242, 254, 0.55));
}

/* ---- Hover Tooltip Pill ---- */
.scroll-to-top-btn .stt-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.scroll-to-top-btn .stt-tooltip #sttPercentLabel {
  color: #38BDF8;
  font-weight: 900;
  margin-left: 2px;
}

.scroll-to-top-btn:hover .stt-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ========== LANDING PAGE: push above floating Support Desk pill ========== */
.scroll-to-top-btn.stt-above-float {
  bottom: 100px;
}

/* ========== DARK MODE ========== */
[data-theme="dark"] .scroll-to-top-btn {
  box-shadow:
    0 6px 28px rgba(115, 103, 240, 0.55),
    0 0 20px rgba(0, 242, 254, 0.4);
}

[data-theme="dark"] .scroll-to-top-btn:hover {
  box-shadow:
    0 12px 40px rgba(115, 103, 240, 0.75),
    0 0 30px rgba(0, 242, 254, 0.65),
    0 0 0 7px rgba(115, 103, 240, 0.22);
}

[data-theme="dark"] .scroll-to-top-btn::after {
  border-color: rgba(0, 242, 254, 0.6);
}

/* ========== KEYFRAMES ========== */
@keyframes sttRingPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.22);
    opacity: 0;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199.98px) {
  .scroll-to-top-btn {
    right: 24px;
    bottom: 28px;
  }
  .scroll-to-top-btn.stt-above-float {
    bottom: 96px;
  }
}

@media (max-width: 768px) {
  .scroll-to-top-btn {
    width: 44px;
    height: 44px;
    bottom: 24px;
    right: 18px;
  }
  .scroll-to-top-btn.stt-above-float {
    bottom: 150px;
    right: 16px;
  }
  .scroll-to-top-btn .stt-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .scroll-to-top-btn {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 14px;
  }
}

/* ==========================================================================
   ADVANCED TOPBAR 5 FEATURES & DROPDOWNS
   (Language, Quick Apps Grid, Notifications Center, Theme, Layout, Profile Menu)
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.topbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.22s;
  pointer-events: none;
  overflow: hidden;
}

.topbar-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.topbar-dropdown-header {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
}

.topbar-dropdown-header h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0;
}

.topbar-dropdown-footer {
  padding: 0.65rem 1.15rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  background: var(--bg-subtle);
  font-size: 0.82rem;
}

/* 1. Language Dropdown Menu */
.language-dropdown-menu {
  width: 210px;
}

.language-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.language-dropdown-item:hover, .language-dropdown-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* 2. Quick Apps Grid Menu */
.apps-dropdown-menu {
  width: 330px;
}

.topbar-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem;
}

.topbar-app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  border: 1px solid transparent;
  color: var(--text-heading);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.topbar-app-card:hover {
  background: var(--bg-card);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
}

.topbar-app-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.topbar-app-title {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

/* 3. Notification Center Dropdown */
.notifications-dropdown-menu {
  width: 360px;
}

.notifications-list {
  max-height: 300px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.notification-item:hover {
  background: var(--bg-subtle);
}

.notification-item.unread {
  background: rgba(115, 103, 240, 0.05);
}

.notification-item.unread::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 24px;
  border-radius: 3px;
  background: var(--primary);
}

.notification-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.notification-content {
  flex: 1 1 auto;
}

.notification-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.notification-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 4px;
}

.notification-time {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* 4. User Profile Dropdown Menu */
.user-profile-dropdown-menu {
  width: 270px;
}

.user-profile-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-subtle);
}

.user-profile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.15rem;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.user-profile-menu-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.user-profile-menu-item i {
  width: 18px;
  margin-right: 8px;
  text-align: center;
}

/* ==========================================================================
   ADVANCED ACCOUNT SETTINGS MODAL
   ========================================================================== */
.account-settings-dialog {
  max-width: 860px;
  width: 95%;
}

.account-nav-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-subtle);
  padding: 0.5rem 1rem 0;
  gap: 0.5rem;
  overflow-x: auto;
}

.account-nav-tab-btn {
  padding: 0.65rem 1.15rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.account-nav-tab-btn:hover {
  color: var(--primary);
  background: rgba(115, 103, 240, 0.08);
}

.account-nav-tab-btn.active {
  color: var(--primary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-bottom-color: var(--bg-card);
  margin-bottom: -1px;
}

.account-tab-content {
  display: none;
  padding: 1.25rem;
}

.account-tab-content.active {
  display: block;
  animation: fadeIn 0.25s ease-in-out;
}

.session-device-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.avatar-preview-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0284C7);
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.35);
  flex-shrink: 0;
}

/* ==========================================================================
   OFFICIAL TAX INVOICE & RECEIPT ENGINE (Exact 1:1 Photo Match)
   ========================================================================== */
.ctd-invoice-modal-dialog {
  max-width: 880px !important;
  width: 95% !important;
  margin: 1.5rem auto !important;
}

.ctd-invoice-paper {
  background: #FFFFFF !important;
  color: #1E293B !important;
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ctd-inv-wave-top {
  width: 100%;
  height: 75px;
  display: block;
}

.ctd-inv-content {
  padding: 0.5rem 2.2rem 1.5rem;
  position: relative;
  z-index: 2;
}

/* Watermark Status Stamp */
.ctd-inv-stamp {
  position: absolute;
  top: 155px;
  right: 330px;
  padding: 5px 16px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  border: 3px dashed #10B981;
  color: #10B981;
  border-radius: 8px;
  transform: rotate(-15deg);
  opacity: 0.85;
  pointer-events: none;
  z-index: 5;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.4);
}

.ctd-inv-stamp.pending {
  border-color: #F59E0B;
  color: #F59E0B;
}

.ctd-inv-stamp.refunded {
  border-color: #EF4444;
  color: #EF4444;
}

.ctd-inv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.ctd-inv-brand-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ctd-inv-logo {
  height: 58px;
  object-fit: contain;
}

.ctd-inv-motto {
  font-family: 'Caveat', 'Segoe Script', 'Comic Sans MS', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0A3C94;
  line-height: 1.15;
}

.ctd-inv-service-pills {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
  flex-wrap: nowrap;
}

.ctd-inv-srv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 72px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 5px 3px 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ctd-inv-srv-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 82, 204, 0.12);
}

.ctd-inv-srv-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.ctd-inv-srv-label {
  font-size: 0.48rem;
  font-weight: 800;
  color: #003B95;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.ctd-inv-title-box {
  text-align: right;
}

.ctd-inv-title {
  font-size: 2.35rem;
  font-weight: 900;
  color: #0A2540;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.ctd-inv-submsg {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0052CC;
  margin-top: 4px;
  margin-bottom: 0.65rem;
}

.ctd-inv-meta-table {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: #F8FAFC;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  text-align: left;
}

.ctd-inv-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
}

.ctd-inv-meta-pill {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #0052CC;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.ctd-inv-meta-label {
  font-weight: 700;
  color: #475569;
  width: 90px;
}

.ctd-inv-meta-val {
  font-weight: 700;
  color: #0F172A;
}

/* Info Cards Row */
.ctd-inv-cards-row {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.ctd-inv-info-card {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 14px;
  background: #FFFFFF;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.ctd-inv-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.ctd-inv-card-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.ctd-inv-card-text {
  font-size: 0.74rem;
  color: #475569;
  line-height: 1.35;
}

.ctd-inv-card-contact {
  font-size: 0.74rem;
  color: #0F172A;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ctd-inv-center-art {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Itemized Table */
.ctd-inv-table-wrap {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #CBD5E1;
}

.ctd-inv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.ctd-inv-table thead {
  background: linear-gradient(90deg, #0052CC 0%, #7367F0 100%);
  color: #FFFFFF;
}

.ctd-inv-table th {
  padding: 9px 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: left;
  border: none;
}

.ctd-inv-table th.text-center { text-align: center; }
.ctd-inv-table th.text-right { text-align: right; }

.ctd-inv-table tbody tr {
  border-bottom: 1px solid #E2E8F0;
  transition: background 0.15s;
}

.ctd-inv-table tbody tr:last-child {
  border-bottom: none;
}

.ctd-inv-table tbody tr:nth-child(even) {
  background: #F8FAFC;
}

.ctd-inv-table td {
  padding: 8px 12px;
  color: #1E293B;
  vertical-align: middle;
}

.ctd-inv-item-title {
  font-weight: 800;
  color: #0F172A;
  font-size: 0.82rem;
}

.ctd-inv-item-sub {
  font-size: 0.7rem;
  color: #64748B;
}

.ctd-inv-cat-pill {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
}

.ctd-inv-cat-web { background: #F3E8FF; color: #7E22CE; }
.ctd-inv-cat-domain { background: #DCFCE7; color: #15803D; }
.ctd-inv-cat-hosting { background: #FEF3C7; color: #B45309; }
.ctd-inv-cat-maint { background: #E0F2FE; color: #0369A1; }
.ctd-inv-cat-ssl { background: #FCE7F3; color: #BE185D; }
.ctd-inv-cat-zip { background: #EDE9FE; color: #6D28D9; }
.ctd-inv-cat-remote { background: #D1FAE5; color: #047857; }

/* Totals & Calculations */
.ctd-inv-calc-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.ctd-inv-calc-box {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.82rem;
}

.ctd-inv-calc-item {
  display: flex;
  justify-content: space-between;
  color: #475569;
}

.ctd-inv-calc-item.discount {
  color: #DC2626;
  font-weight: 700;
}

.ctd-inv-total-capsule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.ctd-inv-total-label {
  font-size: 0.85rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: 0.5px;
}

.ctd-inv-total-pill {
  background: #0052CC;
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 900;
  padding: 6px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

/* Payment Methods & Bottom Sections */
.ctd-inv-bottom-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.ctd-inv-payment-box {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 14px;
  background: #FFFFFF;
}

.ctd-inv-pay-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 6px;
  font-size: 0.72rem;
}

.ctd-inv-bank-info {
  line-height: 1.45;
  color: #334155;
}

.ctd-inv-upi-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ctd-inv-qr-img {
  width: 58px;
  height: 58px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 2px;
  background: #fff;
}

.ctd-inv-terms-box {
  font-size: 0.7rem;
  color: #64748B;
  line-height: 1.4;
}

.ctd-inv-terms-title {
  font-weight: 800;
  color: #0F172A;
  font-size: 0.75rem;
  margin-bottom: 3px;
}

.ctd-inv-thankyou-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.ctd-inv-thankyou-title {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-size: 1.65rem;
  font-weight: 700;
  color: #003B95;
  line-height: 1;
}

.ctd-inv-thankyou-sub {
  font-size: 0.75rem;
  color: #EA580C;
  font-weight: 700;
  margin-bottom: 6px;
}

.ctd-inv-social-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.ctd-inv-social-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.72rem;
  text-decoration: none;
}

/* Footer Wave */
.ctd-inv-footer-wave {
  width: 100%;
  height: 60px;
  display: block;
}

/* Print Specific Rules */
@media print {
  body * {
    visibility: hidden;
  }
  .ctd-invoice-paper, .ctd-invoice-paper * {
    visibility: visible;
  }
  .ctd-invoice-paper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .modal-header, .modal-footer, .btn, .sidebar, .layout-navbar, .horizontal-layout-nav, .floating-customizer-btn {
    display: none !important;
  }
}



