/* ==========================================================================
   EAPRO SMART ENERGY PLATFORM - ENTERPRISE SAAS DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors (Solar Energy Theme) */
  --eapro-brand: #F59E0B;
  --eapro-brand-hover: #D97706;
  --eapro-brand-dark: #B45309;
  --eapro-brand-light: #FEF3C7;
  --eapro-brand-subtle: rgba(245, 158, 11, 0.12);
  --eapro-brand-glow: rgba(245, 158, 11, 0.25);

  /* Surface & Background */
  --eapro-bg-app: #F8FAFC;
  --eapro-bg-card: #FFFFFF;
  --eapro-bg-muted: #F1F5F9;
  --eapro-border: #E2E8F0;
  --eapro-border-subtle: #EDF2F7;

  /* Typography */
  --eapro-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --eapro-text-main: #0F172A;
  --eapro-text-secondary: #475569;
  --eapro-text-muted: #94A3B8;

  /* Status Colors */
  --status-online: #10B981;
  --status-online-bg: rgba(16, 185, 129, 0.12);
  --status-offline: #64748B;
  --status-offline-bg: rgba(100, 116, 139, 0.12);
  --status-fault: #EF4444;
  --status-fault-bg: rgba(239, 68, 68, 0.12);
  --status-warning: #F59E0B;
  --status-warning-bg: rgba(245, 158, 11, 0.12);
  --status-charging: #3B82F6;
  --status-charging-bg: rgba(59, 130, 246, 0.12);

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 12px 24px -4px rgba(245, 158, 11, 0.15), 0 4px 8px -2px rgba(0, 0, 0, 0.06);
}

/* Global Reset & Typography */
body {
  font-family: var(--eapro-font) !important;
  background-color: var(--eapro-bg-app) !important;
  color: var(--eapro-text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hide broken images gracefully */
img:not([src]), img[src=""], img[src="null"], img[src="undefined"] {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* --------------------------------------------------------------------------
   HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.eapro-navbar {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 6px 0 !important;
  transition: all 0.3s ease;
}

.eapro-brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.eapro-brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.eapro-brand-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.eapro-brand-title .badge-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--eapro-brand);
  color: #000;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* Navigation Links / Pills */
.eapro-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94A3B8 !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.eapro-nav-link i {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.eapro-nav-link:hover {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.08);
}

.eapro-nav-link:hover i {
  transform: translateY(-1px);
  color: var(--eapro-brand);
}

.eapro-nav-link.active {
  color: #000000 !important;
  background: var(--eapro-brand) !important;
  box-shadow: 0 4px 12px var(--eapro-brand-glow);
}

.eapro-nav-link.active i {
  color: #000000 !important;
}

/* User Profile & Actions */
.eapro-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px 4px 5px;
  border-radius: 9999px;
  color: #FFFFFF;
}

.eapro-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--eapro-brand), var(--eapro-brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #000;
}

.eapro-btn-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171 !important;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.eapro-btn-logout:hover {
  background: #EF4444;
  color: #FFFFFF !important;
  border-color: #EF4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Page Layout Wrapper */
.eapro-main-wrapper {
  padding-top: 56px;
  min-height: calc(100vh - 40px);
  background-color: var(--eapro-bg-app);
}

/* --------------------------------------------------------------------------
   METRIC KPI CARDS (INVERTER & TELEMETRY)
   -------------------------------------------------------------------------- */
.metric-kpi-card {
  background: var(--eapro-bg-card);
  border: 1px solid var(--eapro-border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--eapro-brand);
}

.metric-kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.metric-kpi-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.metric-kpi-icon.solar {
  background: var(--eapro-brand-light);
  color: var(--eapro-brand-dark);
}

.metric-kpi-icon.battery {
  background: var(--status-charging-bg);
  color: var(--status-charging);
}

.metric-kpi-icon.grid {
  background: rgba(168, 85, 247, 0.12);
  color: #9333EA;
}

.metric-kpi-icon.status {
  background: var(--status-online-bg);
  color: var(--status-online);
}

.metric-kpi-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--eapro-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-kpi-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--eapro-text-main);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.metric-kpi-subtext {
  font-size: 12px;
  color: var(--eapro-text-muted);
  font-weight: 500;
}

/* Status Pill & Pulse Dot */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pill.online {
  background: var(--status-online-bg);
  color: var(--status-online);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-pill.offline {
  background: var(--status-offline-bg);
  color: var(--status-offline);
  border: 1px solid rgba(100, 116, 139, 0.2);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  position: relative;
}

.status-pill.online .pulse-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--status-online);
  animation: pulse-ring 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   CARDS & CONTAINERS
   -------------------------------------------------------------------------- */
.eapro-card {
  background: var(--eapro-bg-card);
  border: 1px solid var(--eapro-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.eapro-card-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--eapro-border-subtle);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eapro-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--eapro-text-main);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eapro-card-body {
  padding: 20px;
}

/* --------------------------------------------------------------------------
   AG-GRID ENTERPRISE STYLING
   -------------------------------------------------------------------------- */
.ag-theme-alpine {
  --ag-header-background-color: #F8FAFC !important;
  --ag-header-foreground-color: #0F172A !important;
  --ag-font-family: var(--eapro-font) !important;
  --ag-font-size: 13px !important;
  --ag-border-color: #E2E8F0 !important;
  --ag-row-hover-color: #FEF3C7 !important;
  --ag-selected-row-background-color: #FEF3C7 !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  border: 1px solid var(--eapro-border) !important;
}

.ag-theme-alpine .ag-header-cell-label {
  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #1E293B !important;
}

.ag-theme-alpine .ag-header-cell {
  border-right: 1px solid #EDF2F7 !important;
}

.ag-theme-alpine .ag-row {
  border-bottom-color: #EDF2F7 !important;
}

/* --------------------------------------------------------------------------
   BUTTONS & FORMS
   -------------------------------------------------------------------------- */
.btn-eapro-primary {
  background: var(--eapro-brand) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  padding: 9px 20px !important;
  font-size: 14px !important;
  box-shadow: 0 4px 12px var(--eapro-brand-glow) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-eapro-primary:hover {
  background: var(--eapro-brand-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--eapro-brand-glow) !important;
}

.form-control-eapro {
  border: 1.5px solid var(--eapro-border) !important;
  border-radius: var(--radius-md) !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  font-family: var(--eapro-font) !important;
  color: var(--eapro-text-main) !important;
  background-color: #FFFFFF !important;
  transition: all 0.2s ease !important;
}

.form-control-eapro:focus {
  border-color: var(--eapro-brand) !important;
  box-shadow: 0 0 0 4px var(--eapro-brand-subtle) !important;
  outline: none !important;
}

/* Tab Navigation Pills */
.nav-pills-eapro {
  display: flex;
  gap: 8px;
  background: #FFFFFF;
  padding: 6px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--eapro-border);
}

.nav-pills-eapro .nav-link {
  color: var(--eapro-text-secondary) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-md) !important;
  border: none !important;
  transition: all 0.2s ease !important;
}

.nav-pills-eapro .nav-link.active {
  background: var(--eapro-brand) !important;
  color: #000000 !important;
  box-shadow: 0 4px 12px var(--eapro-brand-glow) !important;
}

/* --------------------------------------------------------------------------
   MODAL HEADERS (Enterprise Dark Slate)
   -------------------------------------------------------------------------- */
.modal-header-eapro {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--eapro-brand);
}

.modal-header-eapro h5 {
  margin: 0;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--eapro-font);
}

.modal-header-eapro h5 i {
  font-size: 20px;
}

.modal-header-eapro .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.modal-header-eapro .btn-close-white:hover {
  opacity: 1;
}

.modal-content {
  border: none !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* --------------------------------------------------------------------------
   FORM SECTION TITLES (In-form dividers)
   -------------------------------------------------------------------------- */
.form-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--eapro-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 0 8px 0;
  margin-top: 8px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--eapro-border-subtle);
  font-family: var(--eapro-font);
}

.form-section-title i {
  font-size: 16px;
  color: var(--eapro-brand);
}

/* --------------------------------------------------------------------------
   AUTH / LOGIN PAGE (Enterprise SaaS)
   -------------------------------------------------------------------------- */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  position: relative;
  overflow-x: hidden;
}

.auth-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(245, 158, 11, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.auth-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow:
    0 25px 60px -15px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 36px 32px;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.auth-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0F172A;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
}

.auth-brand-badge img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.auth-card .auth-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--eapro-text-main);
  margin-bottom: 4px;
  letter-spacing: -0.4px;
}

.auth-card .auth-subtitle {
  font-size: 13px;
  color: var(--eapro-text-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

/* Bulletproof Auth Input System */
.auth-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.auth-input-icon-left {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  color: #94A3B8;
  pointer-events: none;
  z-index: 2;
}

.auth-input-icon-right {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  color: #94A3B8;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s ease;
}

.auth-input-icon-right:hover {
  color: var(--eapro-brand-dark);
}

.auth-input-field {
  width: 100% !important;
  padding: 11px 40px 11px 42px !important;
  font-size: 14px !important;
  border: 1.5px solid var(--eapro-border) !important;
  border-radius: var(--radius-md) !important;
  background-color: #F8FAFC !important;
  color: var(--eapro-text-main) !important;
  font-family: var(--eapro-font) !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.auth-input-field:focus {
  background-color: #FFFFFF !important;
  border-color: var(--eapro-brand) !important;
  box-shadow: 0 0 0 4px var(--eapro-brand-subtle) !important;
  outline: none !important;
}

.auth-input-field.is-invalid {
  border-color: var(--status-fault) !important;
  box-shadow: 0 0 0 4px var(--status-fault-bg) !important;
}

/* --------------------------------------------------------------------------
   CUSTOMER NAV TILE CARDS (Feature Hub)
   -------------------------------------------------------------------------- */
.eapro-tile-card {
  background: var(--eapro-bg-card);
  border: 1px solid var(--eapro-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  text-decoration: none !important;
  color: var(--eapro-text-main) !important;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.eapro-tile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--eapro-brand);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.eapro-tile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--eapro-brand);
}

.eapro-tile-card:hover::before {
  transform: scaleX(1);
}

.eapro-tile-card .tile-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: var(--eapro-brand-light);
  color: var(--eapro-brand-dark);
  transition: all 0.3s ease;
}

.eapro-tile-card:hover .tile-icon {
  background: var(--eapro-brand);
  color: #000;
  transform: scale(1.1);
}

.eapro-tile-card .tile-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--eapro-text-main);
}

.eapro-tile-card .tile-desc {
  font-size: 12px;
  color: var(--eapro-text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   SWITCH / TOGGLE WRAPPERS (Dashboard Control Panel)
   -------------------------------------------------------------------------- */
.switch-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--eapro-bg-card);
  border: 1px solid var(--eapro-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.switch-wrapper:hover {
  border-color: var(--eapro-brand);
  box-shadow: var(--shadow-sm);
}

.switch-wrapper .switch-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--eapro-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.switch-wrapper .switch-label i {
  font-size: 18px;
  color: var(--eapro-brand);
}

/* --------------------------------------------------------------------------
   PAGE TITLE BAR (Breadcrumb & Context)
   -------------------------------------------------------------------------- */
.eapro-page-title-bar {
  padding: 4px 0 6px 0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--eapro-border-subtle);
}

.eapro-page-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--eapro-text-main);
  letter-spacing: -0.3px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.eapro-page-subtitle {
  font-size: 12px;
  color: var(--eapro-text-muted);
  font-weight: 500;
  margin: 0;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   AG-GRID — NUCLEAR OVERRIDE (Kill Yellow Headers)
   Higher specificity to beat any inline <style> or JS headerStyle
   -------------------------------------------------------------------------- */
div.ag-theme-alpine .ag-header,
div.ag-theme-alpine .ag-header-row,
.ag-theme-alpine .ag-header,
.ag-header {
  background-color: #F8FAFC !important;
  background: #F8FAFC !important;
  border-bottom: 2px solid var(--eapro-border) !important;
}

div.ag-theme-alpine .ag-header-cell-text,
.ag-theme-alpine .ag-header-cell-text,
.ag-header-cell-text {
  color: #1E293B !important;
  font-family: var(--eapro-font) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
}

div.ag-theme-alpine .ag-row-hover,
.ag-theme-alpine .ag-row-hover {
  background-color: #FEF3C7 !important;
}

div.ag-theme-alpine .ag-row-selected,
.ag-theme-alpine .ag-row-selected {
  background-color: #FEF9C3 !important;
}

div.ag-theme-alpine .ag-cell {
  font-size: 12px !important;
  font-family: var(--eapro-font) !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  line-height: 34px !important;
}

div.ag-theme-alpine .ag-header-cell {
  padding-left: 8px !important;
  padding-right: 8px !important;
}


/* --------------------------------------------------------------------------
   VALIDATION ERROR STYLING
   -------------------------------------------------------------------------- */
.error {
  color: var(--status-fault);
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  font-family: var(--eapro-font);
}

/* --------------------------------------------------------------------------
   RESPONSIVE TWEAKS
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .eapro-navbar .container-fluid {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .metric-kpi-card {
    padding: 14px 16px;
  }
  
  .metric-kpi-value {
    font-size: 18px;
  }
  
  .auth-card {
    margin: 16px;
    padding: 28px 20px;
  }
  
  .nav-pills-eapro {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .eapro-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
