/* ============================================
   AdminZ Pro - Premium Admin Template
   AdminLTE/Lion Admin - $100+ Quality
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

* { box-sizing: border-box; }

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--adminz-body-bg, #F1F5F9);
  color: var(--adminz-text, #1E293B);
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.9375rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* RTL Support */
[dir="rtl"] .adminz-sidebar { left: auto; right: 0; border-right: none; border-left: 1px solid var(--adminz-border); }
[dir="rtl"] .adminz-main { margin-left: 0; margin-right: 250px; }

/* Sidebar - Professional */
.adminz-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background: var(--adminz-sidebar-bg);
  border-right: 1px solid var(--adminz-border);
  z-index: 1040;
  transition: all 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 24px rgba(0,0,0,0.04);
}

[data-theme="gradient"] .adminz-sidebar {
  border-right: none;
  box-shadow: 2px 0 40px rgba(102, 126, 234, 0.2);
}

.adminz-sidebar-brand {
  padding: 1.5rem 1.5rem;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--adminz-sidebar-text);
  border-bottom: 1px solid var(--adminz-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.adminz-sidebar-brand .bi { font-size: 1.5rem; flex-shrink: 0; }

[data-theme="gradient"] .adminz-sidebar-brand {
  border-bottom-color: rgba(255,255,255,0.15);
  color: #fff;
}

.adminz-nav-item {
  padding: 0.75rem 1.5rem;
  color: var(--adminz-sidebar-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.adminz-nav-item .bi { font-size: 1.1rem; opacity: 0.9; color: inherit; display: inline-block; min-width: 1.25em; }

/* Micro-animations */
.adminz-sidebar { transition: width 0.3s ease, transform 0.3s ease; }
.nav-tabs .nav-link { transition: color 0.2s, border-color 0.2s; }
.nav-pills .nav-link { transition: background 0.2s, color 0.2s; }
.tab-pane.fade { transition: opacity 0.15s ease; }
.pipeline-card.kanban-card { cursor: grab; }
.pipeline-card.kanban-card:active { cursor: grabbing; }
.adminz-nav-item:hover {
  background: var(--adminz-sidebar-hover);
  color: var(--adminz-primary);
}

[data-theme="gradient"] .adminz-nav-item:hover {
  background: var(--adminz-sidebar-hover);
  color: #fff;
}

.adminz-nav-item.active {
  background: var(--adminz-primary);
  color: #fff !important;
}

[data-theme="gradient"] .adminz-nav-item.active {
  background: rgba(255,255,255,0.25);
  color: #fff !important;
  backdrop-filter: blur(10px);
}

.adminz-nav-section {
  padding: 0.5rem 1rem 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--adminz-text-muted);
}

/* Collapsible nav tree - AdminLTE style */
.adminz-nav-tree {
  margin-bottom: 0.25rem;
}
.adminz-nav-toggle {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  color: var(--adminz-sidebar-text);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.adminz-nav-toggle:hover {
  background: var(--adminz-sidebar-hover);
  color: var(--adminz-primary);
}
[data-theme="gradient"] .adminz-nav-toggle:hover { color: #fff; }
.adminz-nav-chevron {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
  color: inherit;
  display: inline-block;
}
.adminz-nav-toggle.expanded .adminz-nav-chevron {
  transform: rotate(180deg);
}
.adminz-nav-tree .collapse { padding-left: 1rem; }
.adminz-nav-tree .adminz-nav-item { padding-left: 2rem; }

.adminz-main {
  margin-left: 250px;
  min-height: 100vh;
  padding: 1.25rem;
  transition: margin-left 0.3s ease;
}

/* Sidebar collapse */
body.adminz-sidebar-collapse .adminz-sidebar { width: 70px; }
body.adminz-sidebar-collapse .adminz-sidebar .adminz-sidebar-brand span,
body.adminz-sidebar-collapse .adminz-nav-section,
body.adminz-sidebar-collapse .adminz-nav-toggle span,
body.adminz-sidebar-collapse .adminz-nav-item span,
body.adminz-sidebar-collapse .adminz-nav-tree .collapse { display: none !important; }
body.adminz-sidebar-collapse .adminz-sidebar .adminz-sidebar-brand { justify-content: center; padding: 1rem; }
body.adminz-sidebar-collapse .adminz-nav-item { justify-content: center; padding: 0.75rem 1rem; }
body.adminz-sidebar-collapse .adminz-nav-toggle { justify-content: center; padding: 0.75rem 1rem; }
body.adminz-sidebar-collapse .adminz-nav-toggle .adminz-nav-chevron { display: none; }
body.adminz-sidebar-collapse .adminz-main { margin-left: 70px; }
[dir="rtl"] body.adminz-sidebar-collapse .adminz-main { margin-left: 0; margin-right: 70px; }

[dir="rtl"] .adminz-main { margin-right: 250px; margin-left: 0; }

/* Content Header - Premium */
.content-header {
  padding: 0.875rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--adminz-border);
}

.content-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.content-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
}

.content-header .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--adminz-text-muted);
  padding: 0 0.35rem;
}

.content-header .breadcrumb-item a {
  color: var(--adminz-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.content-header .breadcrumb-item a:hover {
  color: var(--adminz-primary);
}

.content-header .breadcrumb-item.active {
  color: var(--adminz-text);
  font-weight: 500;
}

/* Navbar - Premium */
.adminz-navbar {
  background: var(--adminz-navbar-bg) !important;
  border: none;
  border-bottom: 1px solid var(--adminz-border);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 0.375rem;
  box-shadow: var(--adminz-navbar-shadow);
}

/* Cards - Premium box style */
.adminz-card {
  background: var(--adminz-card-bg);
  border: 1px solid var(--adminz-border);
  border-radius: 0.5rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
}

.adminz-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.06);
}

[data-theme="dark"] .adminz-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Section titles - consistent */
.adminz-card h5.fw-bold,
.adminz-card .fw-bold {
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

/* Stat Cards - Premium look */
.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--stat-accent);
  opacity: 0.08;
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.stat-card .stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-card .stat-value { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.stat-card .stat-label { font-size: 0.8125rem; font-weight: 500; }
.stat-card .badge { font-size: 0.75rem; padding: 0.25rem 0.5rem; }

/* Pipeline / Kanban columns */
.pipeline-column {
  min-width: 280px;
  background: var(--adminz-bg-light);
  border-radius: 0.75rem;
  padding: 1rem;
}

.pipeline-card {
  background: var(--adminz-card-bg);
  border: 1px solid var(--adminz-border);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}

.pipeline-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Forms - Premium polish */
.form-control:focus {
  border-color: var(--adminz-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--adminz-primary) 18%, transparent);
}

.form-label {
  font-weight: 500;
  font-size: 0.875rem;
}

/* Tables - Premium */
.table > thead > tr > th {
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.adminz-card .table tbody tr:hover {
  background: var(--adminz-bg-light, #F8FAFC);
}

/* Badges */
.badge {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge.bg-primary-soft { background: color-mix(in srgb, var(--adminz-primary) 15%, transparent); color: var(--adminz-primary); }
.badge.bg-success-soft { background: color-mix(in srgb, var(--adminz-success) 15%, transparent); color: var(--adminz-success); }
.badge.bg-danger-soft { background: color-mix(in srgb, var(--adminz-danger) 15%, transparent); color: var(--adminz-danger); }
.badge.bg-warning-soft { background: color-mix(in srgb, var(--adminz-warning) 15%, transparent); color: var(--adminz-warning); }
.badge.bg-info-soft { background: color-mix(in srgb, var(--adminz-info) 15%, transparent); color: var(--adminz-info); }

/* Alerts - Premium */
.alert {
  border-radius: 0.5rem;
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert .bi { flex-shrink: 0; margin-top: 0.125rem; }

/* Progress - Premium */
.progress {
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--adminz-bg-light, #F1F5F9);
}

.progress-bar {
  transition: width 0.4s ease;
}

/* Tabs - Underline (AdminZ) */
.adminz-nav-underline {
  border-bottom: 1px solid var(--adminz-border);
  gap: 0;
}

.adminz-nav-underline .nav-link {
  border: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: 0.75rem 1rem;
  color: var(--adminz-text-muted);
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}

.adminz-nav-underline .nav-link:hover { color: var(--adminz-primary); }
.adminz-nav-underline .nav-link.active,
.adminz-nav-underline .nav-link.show {
  border-bottom-color: var(--adminz-primary);
  color: var(--adminz-primary);
  background: transparent !important;
}

.nav-tabs .nav-link {
  border-radius: 0.375rem 0.375rem 0 0;
  font-weight: 500;
}

.nav-pills .nav-link {
  border-radius: 0.5rem;
  font-weight: 500;
}

/* Accordion - Premium */
.accordion-button {
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: var(--adminz-primary);
}

/* Dropdown - Premium */
.dropdown-menu {
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border: 1px solid var(--adminz-border);
}

.dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: background 0.15s;
}

.dropdown-item .bi { opacity: 0.85; }

/* Modal - Premium */
.modal-content {
  border-radius: 0.5rem;
  border: 1px solid var(--adminz-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-header {
  padding: 1rem 1.25rem;
  border-bottom-color: var(--adminz-border);
}

.modal-body { padding: 1.25rem; }
.modal-footer { padding: 1rem 1.25rem; border-top-color: var(--adminz-border); }

/* Timeline - Premium */
.adminz-timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--adminz-border);
}

.adminz-timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.adminz-timeline-item:last-child { padding-bottom: 0; }

.adminz-timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 0.25rem;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--adminz-card-bg);
  box-shadow: 0 0 0 2px var(--adminz-border);
}

.adminz-timeline-item .text-muted { font-size: 0.8125rem; }

/* Card variants - Premium */
.adminz-card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--adminz-border);
  font-weight: 600;
  font-size: 1rem;
}

.adminz-card-body { padding: 1.25rem; }
.adminz-card-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--adminz-border);
  background: var(--adminz-bg-light, #F8FAFC);
}

/* Buttons - subtle hover */
.btn:not(.btn-link) {
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:not(.btn-link):hover {
  transform: translateY(-0.5px);
}

.btn:not(.btn-link):active {
  transform: translateY(0);
}

/* Theme Customizer */
.adminz-customizer {
  position: fixed;
  top: 50%;
  right: -300px;
  transform: translateY(-50%);
  width: 300px;
  background: var(--adminz-card-bg);
  border: 1px solid var(--adminz-border);
  border-right: none;
  border-radius: 1rem 0 0 1rem;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  z-index: 1050;
  padding: 1.25rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

[dir="rtl"] .adminz-customizer { right: auto; left: -300px; }
[dir="rtl"] .adminz-customizer.open { left: 0; }

/* Customizer Toggle Button */
.adminz-customizer-btn {
  display: none !important;
}

[dir="rtl"] .adminz-customizer-btn { right: auto; left: 0; border-radius: 0 12px 12px 0; }

/* Sidebar overlay - mobile backdrop */
.adminz-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1039;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.adminz-sidebar-overlay.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
body.adminz-sidebar-open { overflow: hidden; }

@media (max-width: 991.98px) {
  .adminz-sidebar {
    transform: translateX(-100%);
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    z-index: 1040;
  }
  .adminz-sidebar.show { transform: translateX(0); }
  [dir="rtl"] .adminz-sidebar { transform: translateX(100%); }
  [dir="rtl"] .adminz-sidebar.show { transform: translateX(0); }
  .adminz-main { margin-left: 0; margin-right: 0; padding: 0.75rem; }
  .content-header .breadcrumb { justify-content: flex-start; }
  .content-header .float-sm-end { float: none !important; }
}

@media (max-width: 575.98px) {
  .adminz-main { padding: 0.75rem; }
  .adminz-card { margin-bottom: 0.75rem; }
  .content-header h1 { font-size: 1.25rem; }
}

/* Page spacing - premium layout */
.adminz-main .row.g-4 { --bs-gutter-y: 1.25rem; --bs-gutter-x: 1.25rem; }

/* Toast / Notification */
.adminz-toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.adminz-toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--adminz-card-bg);
  border: 1px solid var(--adminz-border);
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  pointer-events: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.adminz-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.adminz-toast-icon { font-size: 1.25rem; flex-shrink: 0; }
.adminz-toast-message { flex: 1; font-size: 0.9rem; font-weight: 500; }
.adminz-toast-close { background: none; border: none; padding: 0.25rem; cursor: pointer; opacity: 0.6; }
.adminz-toast-close:hover { opacity: 1; }
.adminz-toast-success .adminz-toast-icon { color: var(--adminz-success); }
.adminz-toast-danger .adminz-toast-icon { color: var(--adminz-danger); }
.adminz-toast-warning .adminz-toast-icon { color: var(--adminz-warning); }
.adminz-toast-info .adminz-toast-icon { color: var(--adminz-info); }

/* Skeleton Loading */
.adminz-skeleton {
  background: linear-gradient(90deg, var(--adminz-border) 25%, var(--adminz-bg-light) 50%, var(--adminz-border) 75%);
  background-size: 200% 100%;
  animation: adminz-skeleton 1.2s ease-in-out infinite;
  border-radius: 0.25rem;
}

@keyframes adminz-skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.adminz-skeleton-text { height: 1rem; margin-bottom: 0.5rem; }
.adminz-skeleton-title { height: 1.5rem; width: 60%; margin-bottom: 0.75rem; }
.adminz-skeleton-avatar { width: 48px; height: 48px; border-radius: 50%; }

/* Empty State */
.adminz-empty-state {
  text-align: center;
  padding: 3rem 2rem;
}

.adminz-empty-state-icon {
  font-size: 4rem;
  color: var(--adminz-text-muted);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.adminz-empty-state-title { font-weight: 600; margin-bottom: 0.5rem; }
.adminz-empty-state-text { color: var(--adminz-text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* Spinner */
.adminz-spinner { width: 2rem; height: 2rem; border: 2px solid var(--adminz-border); border-top-color: var(--adminz-primary); border-radius: 50%; animation: adminz-spin 0.8s linear infinite; }
@keyframes adminz-spin { to { transform: rotate(360deg); } }

.btn .adminz-spinner { width: 1rem; height: 1rem; border-width: 2px; margin-right: 0.5rem; vertical-align: -0.2em; }

/* Global Search Modal */
.adminz-search-modal-content { border-radius: 0.5rem; border: 1px solid var(--adminz-border); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.adminz-search-input-wrap { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--adminz-border); }
.adminz-search-icon { font-size: 1.25rem; color: var(--adminz-text-muted); flex-shrink: 0; }
.adminz-search-input { flex: 1; border: none; outline: none; font-size: 1rem; background: transparent; }
.adminz-search-kbd { font-size: 0.7rem; padding: 0.2rem 0.4rem; background: var(--adminz-bg-light); border-radius: 0.25rem; color: var(--adminz-text-muted); }
.adminz-search-results { max-height: 360px; overflow-y: auto; }
.adminz-search-item { padding: 0.75rem 1.25rem; color: var(--adminz-text); transition: background 0.15s; }
.adminz-search-item:hover { background: var(--adminz-bg-light); }
.adminz-search-item-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--adminz-bg-light); border-radius: 0.375rem; color: var(--adminz-primary); }

/* Notification center */
.adminz-notif-item.unread { background: var(--adminz-bg-light, #F8FAFC); }
.adminz-notif-item:hover { background: var(--adminz-bg-light, #F8FAFC); }
.adminz-notifications-panel .dropdown-item { white-space: normal; }

/* Chat widget */
.adminz-chat-widget { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1040; }
.adminz-chat-btn { width: 56px; height: 56px; border-radius: 50%; border: none; background: var(--adminz-primary); color: #fff; font-size: 1.25rem; box-shadow: 0 4px 20px rgba(79,70,229,0.4); cursor: pointer; display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.2s; }
.adminz-chat-btn:hover { transform: scale(1.05); }
.adminz-chat-badge { position: absolute; top: -4px; right: -4px; font-size: 0.65rem; }
.adminz-chat-panel { position: absolute; bottom: 70px; right: 0; width: 320px; max-height: 400px; background: var(--adminz-card-bg); border: 1px solid var(--adminz-border); border-radius: 0.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.15); overflow: hidden; display: flex; flex-direction: column; }
.adminz-chat-header { padding: 0.75rem 1rem; border-bottom: 1px solid var(--adminz-border); display: flex; justify-content: space-between; align-items: center; }
.adminz-chat-list { overflow-y: auto; max-height: 340px; }
.adminz-chat-item { color: var(--adminz-text); transition: background 0.15s; }
.adminz-chat-item:hover { background: var(--adminz-bg-light); }
.adminz-chat-item small { display: block; font-size: 0.75rem; }

/* Analytics Studio hero */
.analytics-hero {
  background: linear-gradient(135deg, rgba(79,70,229,0.07), rgba(56,189,248,0.03));
  border: 1px solid var(--adminz-border);
}
.analytics-hero-select {
  min-width: 150px;
}
.analytics-hero-metrics .adminz-card {
  box-shadow: none;
}
.analytics-metric-chips .analytics-chip {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: var(--adminz-card-bg);
  border: 1px solid var(--adminz-border);
}

/* Automation flow canvas */
.flow-canvas {
  min-height: 360px;
  border: 1px dashed var(--adminz-border);
  background-image: radial-gradient(circle at 1px 1px, rgba(148,163,184,0.25) 1px, transparent 0);
  background-size: 18px 18px;
  overflow: hidden;
}
.flow-node {
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
}
.flow-node-trigger {
  border-left: 3px solid #FBBF24;
}
.flow-node-condition {
  border-left: 3px solid #3B82F6;
}
.flow-node-action {
  border-left: 3px solid #10B981;
}
.flow-connector-vertical {
  width: 2px;
  height: 40px;
  margin: 0 auto 1rem;
  background: var(--adminz-border);
}
.flow-branch-row::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 140px;
  height: 2px;
  background: var(--adminz-border);
  transform: translateX(-50%);
  margin-top: 4px;
}

/* Customer 360 */
.customer-hero-band {
  border-radius: 0.75rem;
}
.customer-360-sidebar {
  position: sticky;
  top: 1.25rem;
}
