/* ==========================================================================
   LUXEA LIVING — SUPER ADMIN PLATFORM COMMAND STYLES (admin.css)
   Colors: Executive Espresso (#241812), Warm Camel (#B28756), Linen (#F7F5F0)
   Features: Analytics Hub, Regional Gauges, Category Mix, Modern Tables & Actions
   ========================================================================== */

.admin-page-container {
  max-width: 1280px;
  margin: 36px auto 90px;
  padding: 0 20px;
}

/* System Engine Status Chip */
.supabase-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(178, 150, 125, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-cocoa);
  box-shadow: 0 2px 8px rgba(36, 24, 18, 0.04);
}

.supabase-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #999999;
  display: inline-block;
}

.supabase-status-dot.connected {
  background-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulseDot 2s infinite ease-in-out;
}

/* ==========================================================================
   1. TOP EXECUTIVE METRICS GRID
   ========================================================================== */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-metric-card {
  background: #FFFFFF;
  border: 1px solid rgba(178, 150, 125, 0.22);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 6px 20px rgba(36, 24, 18, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(36, 24, 18, 0.08);
}

.metric-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-cocoa);
}

.metric-trend-chip {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.chip-neutral {
  background: #F3EFEA;
  color: #5A453A;
}

.chip-amber {
  background: #FEF9E7;
  color: #9A7B0C;
  border: 1px solid #F9E79F;
}

.chip-green {
  background: #E8F8F0;
  color: #1E8449;
  border: 1px solid #B0E4C1;
}

.chip-gold {
  background: #FBF4EC;
  color: #B28756;
  border: 1px solid rgba(178, 135, 86, 0.3);
}

.metric-val {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 800;
  color: #241812;
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-sub {
  font-size: 0.72rem;
  color: var(--color-cocoa);
  margin-top: 6px;
  opacity: 0.85;
}

/* ==========================================================================
   2. EXECUTIVE ANALYTICS & PORTFOLIO BREAKDOWN HUB
   ========================================================================== */
.admin-analytics-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.analytics-card {
  background: #FFFFFF;
  border: 1px solid rgba(178, 150, 125, 0.22);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(36, 24, 18, 0.04);
  display: flex;
  flex-direction: column;
}

.analytics-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.analytics-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #B28756;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.analytics-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #241812;
  margin: 0;
}

.analytics-chip-gold {
  background: #FBF4EC;
  color: #B28756;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(178, 135, 86, 0.3);
}

.analytics-chip-neutral {
  background: #F3EFEA;
  color: #5A453A;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.analytics-chip-green {
  background: #E8F8F0;
  color: #1E8449;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid #B0E4C1;
}

/* Portfolio Valuation Clusters */
.portfolio-val-cluster {
  background: linear-gradient(135deg, #FBF9F5 0%, #F5EFE6 100%);
  border: 1px solid rgba(178, 150, 125, 0.25);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.val-primary {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.val-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: #B28756;
}

.val-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #241812;
  letter-spacing: -0.02em;
}

.val-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-cocoa);
  margin-left: 6px;
}

.val-secondary {
  font-size: 0.85rem;
  color: var(--color-cocoa);
  margin-top: 4px;
}

.val-secondary strong {
  color: #241812;
  font-weight: 700;
}

.economics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.econ-item {
  background: #FDFBF7;
  border: 1px solid rgba(178, 150, 125, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
}

.econ-label {
  font-size: 0.68rem;
  color: var(--color-cocoa);
  display: block;
  margin-bottom: 4px;
}

.econ-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #241812;
}

/* Regional Distribution Bars */
.regional-bars-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.region-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.region-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.region-name {
  font-weight: 600;
  color: #241812;
}

.region-count {
  color: #B28756;
  font-weight: 700;
}

.region-track {
  width: 100%;
  height: 7px;
  background: #F0EAE1;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.region-fill {
  height: 100%;
  background: linear-gradient(90deg, #C49A6C 0%, #8E6B47 100%);
  border-radius: var(--radius-pill);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Category Pills & Pipeline Funnel */
.category-pills-cluster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.cat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FDFBF7;
  border: 1px solid rgba(178, 150, 125, 0.18);
  border-radius: 12px;
  padding: 8px 12px;
}

.cat-icon {
  font-size: 1rem;
}

.cat-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: #241812;
  flex: 1;
}

.cat-count {
  font-size: 0.8rem;
  font-weight: 800;
  color: #B28756;
}

.pipeline-progress-wrap {
  background: #FDFBF7;
  border: 1px solid rgba(178, 150, 125, 0.15);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: auto;
}

.pipeline-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-cocoa);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.funnel-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.funnel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.f-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #241812;
}

.f-label {
  font-size: 0.65rem;
  color: var(--color-cocoa);
}

.f-approved .f-num {
  color: #1E8449;
}

.funnel-arrow {
  color: #B28756;
  font-size: 0.9rem;
  font-weight: bold;
}

/* ==========================================================================
   3. ACTION HEADER CARD & TABS
   ========================================================================== */
.admin-header-card {
  background: #FFFFFF;
  border: 1px solid rgba(178, 150, 125, 0.22);
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 6px 20px rgba(36, 24, 18, 0.04);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-main-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #241812;
  margin: 6px 0 2px;
}

.admin-actions-cluster {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Tabs Navigation */
.admin-tabs-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(178, 150, 125, 0.2);
  padding-bottom: 2px;
}

.admin-tab-link {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-cocoa);
  padding: 12px 16px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px 12px 0 0;
  transition: all 0.2s ease;
}

.admin-tab-link:hover {
  color: #241812;
  background: rgba(178, 150, 125, 0.08);
}

.admin-tab-link.active {
  color: #241812;
  font-weight: 700;
}

.admin-tab-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #B28756;
  border-radius: 3px 3px 0 0;
}

.tab-badge {
  background-color: #EFE8DF;
  color: #5A453A;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.admin-tab-link.active .tab-badge {
  background-color: #B28756;
  color: #FFFFFF;
}

/* ==========================================================================
   4. TOOLBAR & STATUS PILLS
   ========================================================================== */
.admin-toolbar-card {
  background: #FFFFFF;
  border: 1px solid rgba(178, 150, 125, 0.2);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 4px 14px rgba(36, 24, 18, 0.02);
}

.admin-search-box {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.search-lens-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #B28756;
  pointer-events: none;
}

.admin-search-box input {
  padding-left: 40px;
  background: #FDFBF7;
  border: 1px solid rgba(178, 150, 125, 0.2);
  border-radius: var(--radius-pill);
}

.admin-search-box input:focus {
  background: #FFFFFF;
  border-color: #B28756;
}

/* Status Pills Filter */
.status-pills-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.status-pill {
  border: 1px solid rgba(178, 150, 125, 0.2);
  background: #FDFBF7;
  color: #5A453A;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.status-pill:hover {
  background: #FFFFFF;
  border-color: #B28756;
}

.status-pill.active {
  background: #241812;
  color: #FFFFFF;
  border-color: #241812;
}

.status-pill.active .pill-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.pill-count {
  background: #EAE3D9;
  color: #5A453A;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   5. DATA TABLES & ROW ACTIONS
   ========================================================================== */
.table-responsive-box {
  background: #FFFFFF;
  border: 1px solid rgba(178, 150, 125, 0.22);
  border-radius: 20px;
  overflow-x: auto;
  box-shadow: 0 6px 24px rgba(36, 24, 18, 0.04);
}

.lux-data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  font-size: 0.86rem;
}

.lux-data-table thead th {
  background: #FBF9F5;
  color: #241812;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 13px 10px;
  border-bottom: 1px solid rgba(178, 150, 125, 0.2);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
}

.lux-data-table tbody td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(178, 150, 125, 0.1);
  color: #241812;
  vertical-align: middle;
  transition: background 0.15s ease;
}

.btn-copy-micro {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(178, 150, 125, 0.1);
  border: 1px solid rgba(178, 150, 125, 0.25);
  color: var(--color-camel-dark);
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-copy-micro:hover {
  background: var(--color-camel-dark);
  color: #FFFFFF;
  border-color: var(--color-camel-dark);
}

.lux-data-table tbody tr:hover td {
  background-color: #FDFBF7;
}

.lux-data-table tbody tr:last-child td {
  border-bottom: none;
}

/* Host & Contact Column Cell */
.host-cell-name {
  font-weight: 700;
  color: #241812;
  font-size: 0.9rem;
}

.host-cell-sub {
  font-size: 0.74rem;
  color: var(--color-cocoa);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

/* Fast Table Actions Cluster */
.table-action-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-table-action {
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  white-space: nowrap;
}

/* Quick Status Selector Dropdown */
.status-select-inline {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(178, 150, 125, 0.3);
  background: #FFFFFF;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.status-select-inline.status-pending_review {
  background: #FEF9E7;
  color: #9A7B0C;
  border-color: #F9E79F;
}

.status-select-inline.status-approved {
  background: #E8F8F0;
  color: #1E8449;
  border-color: #B0E4C1;
}

.status-select-inline.status-rejected {
  background: #FDEDEC;
  color: #C0392B;
  border-color: #F5B7B1;
}

/* WhatsApp Direct Outreach Button */
.btn-wa-action {
  background: #E8F8F0;
  color: #1E8449;
  border: 1px solid #B0E4C1;
}

.btn-wa-action:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  transform: translateY(-1px);
}

.btn-inspect {
  background: #F5EFE6;
  color: #241812;
  border: 1px solid rgba(178, 150, 125, 0.3);
}

.btn-inspect:hover {
  background: #B28756;
  color: #FFFFFF;
  border-color: #B28756;
  transform: translateY(-1px);
}

.btn-copy-ref {
  background: #F7F5F0;
  color: var(--color-cocoa);
  border: 1px solid rgba(178, 150, 125, 0.2);
  font-family: monospace;
  font-size: 0.72rem;
}

.btn-copy-ref:hover {
  background: #241812;
  color: #FFFFFF;
}

/* Live Stays Toggle Switch */
.lux-toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.lux-toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.lux-toggle-slider {
  width: 42px;
  height: 24px;
  background-color: #E2D9CC;
  border-radius: var(--radius-pill);
  position: relative;
  transition: background-color 0.25s ease;
}

.lux-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-toggle-input:checked + .lux-toggle-slider {
  background-color: #10B981;
}

.lux-toggle-input:checked + .lux-toggle-slider::before {
  transform: translateX(18px);
}

.lux-toggle-status-text {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-cocoa);
}

.lux-toggle-input:checked ~ .lux-toggle-status-text {
  color: #0E6251;
}

/* Stays Image Thumbnail */
.stay-table-thumb {
  width: 60px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(178, 150, 125, 0.2);
}

/* ==========================================================================
   6. INSPECTION MODAL (LIGHTBOX & DOSSIER)
   ========================================================================== */
.inspect-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36, 24, 18, 0.65);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.inspect-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.inspect-modal-card {
  background: #FFFFFF;
  border-radius: 24px;
  width: 92%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(178, 150, 125, 0.25);
}

.inspect-header {
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(178, 150, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inspect-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #241812;
  margin: 0;
}

.inspect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px 28px;
}

.inspect-item {
  background: #FDFBF7;
  border: 1px solid rgba(178, 150, 125, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
}

.inspect-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #B28756;
  display: block;
  margin-bottom: 4px;
}

.inspect-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #241812;
  word-break: break-word;
}

.inspect-row-full {
  grid-column: 1 / -1;
}

.inspect-photos-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0;
}

.inspect-photo-thumb {
  width: 140px;
  height: 105px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(178, 150, 125, 0.3);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.inspect-photo-thumb:hover {
  transform: scale(1.05);
}

.inspect-footer {
  padding: 18px 28px 24px;
  border-top: 1px solid rgba(178, 150, 125, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FDFBF7;
}

/* ==========================================================================
   7. SUPER ADMIN AUTHENTICATION GATEWAY
   ========================================================================== */
.admin-login-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 40px 20px;
}

.admin-login-card {
  background: #FFFFFF;
  border: 1px solid rgba(178, 150, 125, 0.25);
  border-radius: 24px;
  padding: 44px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(36, 24, 18, 0.08);
  text-align: center;
}

.admin-login-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #241812;
  margin: 12px 0 6px;
}

.admin-login-sub {
  font-size: 0.88rem;
  color: var(--color-cocoa);
  margin-bottom: 24px;
  line-height: 1.4;
}

.admin-login-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .admin-analytics-hub {
    grid-template-columns: 1fr;
  }
  .inspect-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   URGENT PENDING AUDIT BEACON & BLINKING PULSE ANIMATIONS
   ========================================================================== */
@keyframes beaconBlinkPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    border-color: #D97706;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(217, 119, 6, 0);
    border-color: #F59E0B;
    transform: scale(1.04);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    border-color: #D97706;
    transform: scale(1);
  }
}

@keyframes dotFlash {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.15; transform: scale(0.65); }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

/* Pending status pill blinking alert */
.status-pill.pill-amber.has-pending {
  animation: beaconBlinkPulse 1.8s infinite ease-in-out;
  background: #FFFBEB !important;
  border: 1.5px solid #D97706 !important;
  color: #92400E !important;
  font-weight: 700;
}

.status-pill.pill-amber.has-pending .pill-count {
  background: #D97706 !important;
  color: #FFFFFF !important;
}

.pulsing-beacon-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #D97706;
  margin-right: 5px;
  animation: dotFlash 1.1s infinite ease-in-out;
  box-shadow: 0 0 6px rgba(217, 119, 6, 0.6);
}

.pulse-badge {
  animation: badgePulse 1.5s infinite ease-in-out;
  background: #FEF3C7 !important;
  color: #92400E !important;
  border: 1px solid #D97706 !important;
}

/* Executive Urgent Action Banner */
.pending-alert-banner {
  background: linear-gradient(90deg, #FEF3C7 0%, #FFFBEB 100%);
  border: 1px solid #FCD34D;
  border-left: 4px solid #D97706;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.09);
  transition: all 0.3s ease;
}

.pending-alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #78350F;
}

.btn-banner-review {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #D97706;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.btn-banner-review:hover {
  background: #B45309;
  transform: translateY(-1px);
}
