/* NPS CASAGRANDE - Custom Design System */

:root {
  /* Colors */
  --primary: #10b981;
  --primary-hover: #059669;
  --primary-light: #e6fcf5;
  --primary-glow: rgba(16, 185, 129, 0.15);
  
  --secondary: #64748b;
  --secondary-hover: #475569;
  --secondary-light: #f1f5f9;

  --danger: #ef4444;
  --danger-hover: #dc2626;
  --danger-light: #fef2f2;
  --danger-glow: rgba(239, 68, 68, 0.15);

  --warning: #f59e0b;
  --warning-light: #fffbeb;

  --info: #3b82f6;
  --info-light: #eff6ff;

  --bg-page: #f8fafc;
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-border: rgba(226, 232, 240, 0.8);
  --text-main: #0f172a;
  --text-muted: #64748b;
  
  /* Fonts */
  --font-sans: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(16, 185, 129, 0.05), 0 4px 6px -4px rgba(16, 185, 129, 0.03);
  --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03), 0 0 40px 0 rgba(16, 185, 129, 0.03);
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Background Blur Shapes */
.bg-shape {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(100px);
  z-index: -1;
  opacity: 0.45;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background-color: rgba(16, 185, 129, 0.15);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background-color: rgba(59, 130, 246, 0.08);
  bottom: -150px;
  left: -150px;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-green {
  color: var(--primary) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.pt-4 {
  padding-top: 1rem;
}

/* Auth / Login Layout */
.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.auth-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 440px;
  padding: 40px;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.logo-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.logo-icon {
  color: #fff;
  width: 32px;
  height: 32px;
}

.auth-header h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.input-wrapper, .input-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.input-wrapper input, .input-password-wrapper input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  font-family: var(--font-sans);
  font-size: 15px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.input-password-wrapper input {
  padding-right: 48px;
}

.input-wrapper input:focus, .input-password-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.password-toggle-btn:hover {
  color: var(--text-main);
}

.password-toggle-btn svg {
  width: 20px;
  height: 20px;
}

.helper-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* Tooltip Trigger */
.tooltip-trigger {
  display: inline-flex;
  cursor: help;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.tooltip-trigger:hover {
  color: var(--primary);
}

.tooltip-trigger svg {
  width: 14px;
  height: 14px;
}

/* Alerts */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.alert.error {
  background-color: var(--danger-light);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

.alert svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Buttons */
.btn {
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 10px -2px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 6px 14px -2px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}

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

.btn-primary:disabled {
  background: var(--secondary-light);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-secondary {
  background-color: var(--secondary-light);
  border-color: var(--card-border);
  color: var(--secondary-hover);
}

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

.btn-danger {
  background-color: var(--danger);
  color: #fff;
  box-shadow: 0 4px 10px -2px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
  background-color: var(--danger-hover);
  box-shadow: 0 6px 14px -2px rgba(239, 68, 68, 0.35);
  transform: translateY(-1px);
}

.btn-icon-only {
  padding: 10px;
  border-radius: var(--radius-md);
}

.btn-text {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 500;
}

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

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* Dashboard Layout */
.dashboard-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 24px;
}

/* Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrapper-sm {
  background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-sm {
  color: #fff;
  width: 22px;
  height: 22px;
}

.header-logo h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header-logo .sub-title {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Status Indicator */
.connection-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: var(--secondary-light);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.online {
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-green 2s infinite;
}

.status-dot.offline {
  background-color: var(--secondary);
}

.status-dot.active {
  background-color: var(--warning);
  box-shadow: 0 0 8px var(--warning);
  animation: pulse-orange 1.5s infinite;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 24px;
}

.grid-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-header {
  padding: 24px;
  border-bottom: 1px solid var(--card-border);
}

.header-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.header-icon-title h3 {
  font-size: 18px;
  font-weight: 700;
}

.header-icon {
  width: 22px;
  height: 22px;
}

.card-header p {
  color: var(--text-muted);
  font-size: 13px;
}

.card-body {
  padding: 24px;
  flex: 1;
}

/* Tabs Header */
.card-tabs {
  display: flex;
  border-bottom: 1px solid var(--card-border);
  background-color: rgba(241, 245, 249, 0.4);
}

.tab-btn {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  background: none;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.tab-btn:hover {
  color: var(--text-main);
  background-color: rgba(241, 245, 249, 0.8);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background-color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
}

/* Bulk Info & Upload Area */
.bulk-info {
  margin-bottom: 20px;
}

.info-alert {
  display: flex;
  gap: 12px;
  padding: 14px;
  background-color: var(--primary-light);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.45;
}

.info-alert svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.file-upload-area {
  flex: 1;
  border: 2px dashed var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition-normal);
  min-height: 200px;
  margin-bottom: 24px;
}

.file-upload-area:hover, .file-upload-area.dragover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.upload-icon {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
  transition: transform var(--transition-normal), color var(--transition-normal);
}

.file-upload-area:hover .upload-icon {
  color: var(--primary);
  transform: translateY(-4px);
}

.upload-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.upload-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
  max-width: 90%;
  animation: scaleIn var(--transition-fast) forwards;
}

.file-name {
  font-size: 13px;
  font-weight: 500;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-remove-file {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.btn-remove-file:hover {
  background-color: var(--secondary-light);
  color: var(--danger);
}

.btn-remove-file svg {
  width: 14px;
  height: 14px;
}

.action-buttons {
  display: flex;
  gap: 16px;
}

.action-buttons .btn {
  flex: 1;
}

/* Bottom Panel: Stats and Logs */
.stats-logs-section {
  grid-column: 1 / span 2;
  padding: 24px;
}

/* Stats Row */
.stats-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.stat-card {
  background-color: var(--secondary-light);
  border: 1px solid var(--card-border);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card.text-green {
  background-color: var(--primary-light);
  border-color: rgba(16, 185, 129, 0.15);
}

.stat-card.text-danger {
  background-color: var(--danger-light);
  border-color: rgba(239, 68, 68, 0.15);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.stat-card.text-green .stat-label {
  color: var(--primary-hover);
}

.stat-card.text-danger .stat-label {
  color: var(--danger);
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
}

/* Progress Bar */
.progress-bar-wrapper {
  background-color: var(--secondary-light);
  height: 8px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary) 0%, #3b82f6 100%);
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

/* Log Console Component */
.log-viewer-wrapper {
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.log-header {
  background-color: #1e293b;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.log-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.log-title h4 {
  font-size: 14px;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-green 1.5s infinite;
}

.log-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auto-scroll-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.auto-scroll-label input {
  accent-color: var(--primary);
  cursor: pointer;
}

.log-header .btn-text {
  color: #94a3b8;
}

.log-header .btn-text:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.log-console {
  background-color: #0f172a;
  color: #e2e8f0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  padding: 16px;
  height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.log-line {
  word-break: break-all;
  line-height: 1.4;
  border-left: 2px solid transparent;
  padding-left: 8px;
}

.log-line.system {
  color: #3b82f6;
  border-left-color: #3b82f6;
}

.log-line.info {
  color: #94a3b8;
}

.log-line.success {
  color: var(--primary);
  border-left-color: var(--primary);
}

.log-line.error {
  color: var(--danger);
  border-left-color: var(--danger);
}

/* Footer */
.app-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  padding: 16px 0;
  margin-top: auto;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .stats-logs-section {
    grid-column: auto;
  }
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .auth-card {
    padding: 24px;
  }
  .app-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    text-align: center;
  }
  .header-logo {
    justify-content: center;
  }
  .header-actions {
    justify-content: space-between;
  }
}

/* Tenant Manager & Financial Sector Styling */
.tenant-manager-wrapper {
  margin-top: 24px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tenant-manager-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tenant-manager-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.tenant-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.select-count-input {
  width: 65px;
  padding: 6px 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background-color: #fff;
  color: var(--text-main);
  text-align: center;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

#tenant-search {
  width: 100%;
  padding: 8px 12px 8px 36px;
  font-family: var(--font-sans);
  font-size: 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background-color: #fff;
}

.tenant-table-container {
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background-color: #fff;
}

.tenant-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}

.tenant-table th, .tenant-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--secondary-light);
  white-space: nowrap;
}

.tenant-table th {
  background-color: var(--secondary-light);
  color: var(--text-muted);
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 10;
}

.tenant-table tr:hover td {
  background-color: var(--primary-light);
}

.tenant-table td.no-data {
  text-align: center;
  color: var(--text-muted);
  padding: 20px;
  font-style: italic;
}

.table-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--card-border);
  padding-top: 12px;
  margin-top: 8px;
  gap: 12px;
}

#selected-tenants-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.select-count-input:focus, #tenant-search:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Sector selection on login screen */
.sector-selection-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn var(--transition-fast) forwards;
}

.select-hint {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 8px;
}

.sector-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sector-select-btn {
  font-family: var(--font-sans);
  background-color: var(--secondary-light);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition-fast);
  text-align: left;
}

.sector-select-btn svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.sector-select-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.back-link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.btn-back {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.btn-back:hover {
  color: var(--text-main);
}

.sector-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--primary-light);
  color: var(--primary-hover);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

/* 1 Column layout for finance dashboard */
.dashboard-grid.finance-layout {
  grid-template-columns: 1fr;
}
/* 
.section-label-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

.section-label-header i {
  width: 14px;
  height: 14px;
}

*/
