/* ============================================
   MALAZ HUB — Layout & Pages
   Geometric Network Grid & Proactive AI
   ============================================ */

/* ========== LOGIN PAGE (v10.3 Refined) ========== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0f2342 0%, #051525 100%);
  position: relative;
  overflow: hidden;
  z-index: 5000;
  /* Ensure login is on top when visible */
}

body.day-mode .login-page {
  background: radial-gradient(circle at center, #ffffff 0%, #f0f8ff 100%);
}

.login-card {
  background: rgba(15, 35, 66, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.login-logo {
  margin-bottom: 24px;
  text-align: center;
}

.login-logo h1 {
  font-size: 3rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* Redundant Layout rules removed (Moved to main.css) */

/* ========== GLOBAL STYLES (v10.7) ========== */
.gold-border {
  border: 1px solid var(--gold) !important;
  box-shadow: 0 5px 20px rgba(200, 164, 92, 0.2) !important;
}

.sidebar-logo-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s var(--ease);
}

.sidebar-logo-img:active {
  transform: scale(1.1);
}

/* ========== NETWORK GRID (Dashboard) ========== */
/* PowerPoint Infographic Style: Geometric Tiles & Vibrant Grids */
.network-container {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  position: relative;
}

/* Geometric Network Tile */
.network-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.network-tile:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.network-tile::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.network-tile:hover::before {
  opacity: 1;
}

.tile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tile-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tile-icon img {
  filter: drop-shadow(0 0 10px rgba(var(--gold-rgb), 0.3));
}

.tile-info h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  font-weight: 800;
}

.tile-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 700;
  opacity: 0.8;
}

.tile-content {
  flex: 1;
}

.tile-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Network Color Variants (Shiny/Glossy) */
.tile-c1 .tile-icon {
  background: linear-gradient(135deg, #ff7675, #fab1a0);
}

.tile-c2 .tile-icon {
  background: linear-gradient(135deg, #55efc4, #00cec9);
}

.tile-c3 .tile-icon {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.tile-c4 .tile-icon {
  background: linear-gradient(135deg, #a8e6cf, #dcedc1);
}

.tile-c5 .tile-icon {
  background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
}

.tile-c6 .tile-icon {
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.tile-c7 .tile-icon {
  background: linear-gradient(135deg, #0984e3, #45aaf2);
}

/* ========== PROACTIVE AI BOT GIF (v10.1) ========== */
.ai-bot-cont.header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: var(--header-gradient);
  /* SYNC WITH DESIGN THEME v11.0 */
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Premium Control Buttons */
.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 6px 12px;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
}

.control-btn:hover {
  background: var(--gold);
  color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--gold-rgb), 0.4);
}

.control-btn i {
  font-size: 1rem;
}

.ai-bot-container {
  position: fixed;
  bottom: 0;
  left: var(--sidebar-w);
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-deep) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  pointer-events: none;
  z-index: 1000;
}

body[dir="ltr"] .ai-bot-container {
  left: var(--sidebar-w);
  right: 0;
}

.ai-studio-footer {
  width: 100%;
  max-width: 900px;
  background: var(--bg-glass);
  border: 2px solid var(--gold);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.5s var(--ease);
}

.ai-studio-footer:hover {
  height: 120px;
  background: rgba(var(--bg-card-rgb), 0.95);
}

.ai-orb {
  width: 70px;
  /* STUDIO SCALE v10.9 */
  height: 70px;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.4);
  transition: transform 0.4s var(--ease);
}

.avatar-large {
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--gold);
}

.ai-orb:hover {
  box-shadow: 0 0 50px rgba(var(--gold-rgb), 0.5);
}

.ai-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-studio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ai-studio-status {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ai-guidance-strip-new {
  background: rgba(var(--gold-rgb), 0.1);
  padding: 8px 15px;
  border-radius: 10px;
  border-right: 3px solid var(--gold);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
  min-height: 40px;
  display: flex;
  align-items: center;
}

/* Orb scaling during interaction */
.ai-orb.active {
  animation: studio-pulse 2s infinite ease-in-out;
  border-color: var(--gold);
}

@keyframes studio-pulse {
  0% {
    box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.4);
  }

  50% {
    box-shadow: 0 0 60px rgba(var(--gold-rgb), 0.7);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.4);
  }
}

/* Persistent AI Alert v11.1 */
.ai-orb.sticky-alert {
  transform: scale(4) translateY(-140px) !important;
  box-shadow: 0 0 100px rgba(var(--gold-rgb), 0.9);
  z-index: 3000;
  pointer-events: auto;
}

.ai-studio-footer.sticky {
  height: 150px;
  background: rgba(var(--bg-card-rgb), 0.98);
}

.btn-done {
  background: var(--gold);
  color: var(--blue-deep);
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  /* Hidden by default */
  margin-left: auto;
  transition: all 0.3s var(--ease);
}

.btn-done.visible {
  display: block;
  animation: fade-in 0.5s forwards;
}

.btn-done:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.5);
}

/* Proactive Guidance Strip (Floating Style) */
.ai-guidance-strip {
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  background: rgba(var(--bg-card-rgb), 0.85);
  padding: 16px 28px;
  border-radius: 60px;
  border: 1px solid var(--gold);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 450px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

body[dir="ltr"] .ai-guidance-strip {
  transform: translateX(30px);
}

.ai-guidance-strip.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.ai-guidance-strip i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ========== PERFORMANCE ANALYSIS (v9.3) ========== */
.analysis-container {
  padding: 30px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* KPI Bar */
/* Executive KPIs v10.7 */
.kpi-card-exec {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.kpi-card-exec .label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.kpi-card-exec .value {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
}

.kpi-card-exec .trend {
  font-size: 0.85rem;
  font-weight: 800;
}

.kpi-card-exec .kpi-exec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-insight-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.insight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-right: 3px solid var(--gold);
}

.insight-item i {
  margin-top: 4px;
}

.insight-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-primary);
  /* v11.3 FIX FOR DAY MODE */
}

.dashboard-badge {
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-badge.active {
  animation: pulse 2s infinite;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.kpi-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.kpi-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.kpi-info h4 {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.kpi-info .value {
  font-size: 1.4rem;
  font-weight: 900;
}

.kpi-info .trend {
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

.trend.up {
  color: var(--c2);
}

.trend.down {
  color: var(--c1);
}

/* Analytical Table */
.performance-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.perf-table {
  width: 100%;
  border-collapse: collapse;
}

.perf-table th {
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}

body[dir="ltr"] .perf-table th {
  text-align: left;
}

.perf-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.perf-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold);
}

.perf-table tr:last-child td {
  border-bottom: none;
}

.row-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.row-user .avatar-sm {
  width: 32px;
  height: 32px;
}

.status-indicator {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-block;
}

.status-active {
  background: var(--c2-bg);
  color: var(--c2);
}

.status-pending {
  background: var(--c5-bg);
  color: var(--c5);
}

/* ========== COMPONENTS ========== */
.nav-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 900;
}

body[dir="ltr"] .nav-badge {
  right: auto;
  left: 4px;
}

/* ========== AI RESULT VAULT (v11.0) ========== */
.ai-vault {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ai-vault-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.5s var(--ease);
}

.ai-vault-card::after {
  content: 'AI VERIFIED';
  position: absolute;
  top: 10px;
  right: -25px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.6rem;
  font-weight: 900;
  padding: 2px 30px;
  transform: rotate(45deg);
  opacity: 0.8;
}

.ai-vault-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 800;
}

.ai-vault-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.ai-vault-footer {
  margin-top: 15px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ========== ADMIN SOVEREIGN CENTER (v11.0) ========== */
.admin-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px;
}

.hub-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.hub-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-control-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hub-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: background 0.3s;
}

.hub-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hub-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.hub-action-btn {
  background: var(--gold-dark);
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  color: white;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.3s;
}

.hub-action-btn:hover {
  background: var(--gold);
}

.status-badge {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #55efc4;
  box-shadow: 0 0 10px rgba(85, 239, 196, 0.4);
}

.status-badge.offline {
  background: #ff7675;
  box-shadow: 0 0 10px rgba(255, 118, 117, 0.4);
}

/* ========== AI TOOL CARDS (v10) ========== */
.analysis-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.network-tile {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  border: 1px solid var(--border);
}

.network-tile:hover {
  transform: translateY(-8px);
  background: rgba(var(--gold-rgb), 0.05);
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.tool-card i {
  font-size: 2.5rem;
}

.tool-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
}

.tool-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tool-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.accent-c1 i {
  color: var(--c1);
}

.accent-c2 i {
  color: var(--c2);
}

.accent-c3 i {
  color: var(--c3);
}

.accent-c4 i {
  color: var(--c4);
}

.accent-gold i {
  color: var(--gold);
}

/* ========== PREMIUM COMPONENTS (v11.5 Sync) ========== */

/* Refined Stat Card */
.stat-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(var(--gold-rgb), 0.15);
  border-color: rgba(var(--gold-rgb), 0.5);
}

.stat-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.stat-value {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

/* Team & Role Cards */
.team-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.team-card:hover {
  transform: translateX(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.team-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.team-card.ceo::after {
  background: var(--c1);
}

.team-card.mgr::after {
  background: var(--yellow);
}

.team-card.admin::after {
  background: var(--blue);
}

.avatar-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.team-card:hover .avatar-initials {
  border-color: var(--gold);
  transform: scale(1.1);
}

/* Permission Cards */
.perm-card {

  .day-mode .gold-border,
  .day-mode .card,
  .day-mode .stat-card,
  .day-mode .team-card,
  .day-mode .perm-card {
    border-color: var(--gold) !important;
    background: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    /* Unified premium shadow */
  }

  /* Ensure Gold Icons and Values POP in Day mode */
  .day-mode .text-gold,
  .day-mode .stat-value,
  .day-mode .perm-level-num {
    color: var(--gold) !important;
    background: none;
    -webkit-text-fill-color: initial;
    /* Reset gradient text for extreme legibility if needed, or keep for style */
  }

  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.perm-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.perm-level-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.perm-tag {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
}

/* Day Mode Contrast Refinements v11.8 */
.day-mode .stat-value,
.day-mode .tile-info p,
.day-mode .kpi-info h4,
.day-mode .kpi-info .value,
.day-mode .insight-item p,
.day-mode .card-header h3,
.day-mode .kpi-exec-header .label,
.day-mode .kpi-card-exec .value {
  color: #020617 !important;
}

.day-mode .kpi-card-exec {
  background: #ffffff !important;
  border: 2px solid #e2e8f0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

.day-mode .insight-item {
  background: #f8fafc;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 5px;
}