/* Import Modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* CSS VARIABLES */
:root {
  --bg-main: #060913;
  --bg-gradient: radial-gradient(circle at 50% 0%, #0d1527 0%, #060913 70%);
  --bg-card: rgba(13, 20, 38, 0.55);
  --bg-card-hover: rgba(19, 30, 58, 0.75);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.18);
  
  /* Neon Accents */
  --color-primary: #00f2fe;
  --color-secondary: #4facfe;
  --color-green: #10b981;
  --color-green-glow: rgba(16, 185, 129, 0.15);
  --color-red: #ef4444;
  --color-red-glow: rgba(239, 68, 68, 0.15);
  --color-gold: #fbbf24;
  --color-gold-glow: rgba(251, 191, 36, 0.2);
  --color-neutral: #64748b;
  --color-neutral-glow: rgba(100, 116, 139, 0.1);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Card Shadows */
  --shadow-neon: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --shadow-neon-glow: 0 0 15px rgba(0, 242, 254, 0.15);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

body {
  background: var(--bg-main);
  background-image: var(--bg-gradient);
  color: #f1f5f9;
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
}

/* GLOW EFFECT BACKGROUND */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
body::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* APP CONTAINER */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER STYLE */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: rgba(6, 9, 19, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.logo-text h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-top: -2px;
}

/* Header Controls & Status */
.header-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.market-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  color: #94a3b8;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neutral);
  display: inline-block;
}
.status-dot.open {
  background: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
  animation: pulse-green 2s infinite;
}
.status-dot.closed {
  background: var(--color-red);
  box-shadow: 0 0 8px var(--color-red);
}

.search-bar {
  position: relative;
  width: 260px;
}
.search-bar input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem 1rem 0.5rem 2.25rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}
.search-bar svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #64748b;
  pointer-events: none;
}

/* REFRESH TIMERS */
.refresh-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.refresh-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}
.refresh-select:focus {
  border-color: var(--color-primary);
}

.timer-ring-container {
  position: relative;
  width: 28px;
  height: 28px;
}
.timer-ring {
  transform: rotate(-90deg);
}
.timer-ring-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 2.5;
}
.timer-ring-circle {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

/* TICKER TAPE SYSTEM */
.ticker-tape-container {
  background: rgba(6, 9, 19, 0.9);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker-tape-wrapper {
  display: flex;
  white-space: nowrap;
}

.ticker-tape {
  display: inline-flex;
  animation: ticker 45s linear infinite;
  gap: 2rem;
  padding-right: 2rem;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}
.ticker-item:hover {
  color: var(--color-primary);
}
.ticker-item .ticker-symbol {
  color: #fff;
}
.ticker-item .ticker-price {
  color: #cbd5e1;
}
.ticker-item .ticker-change {
  font-weight: 600;
}
.ticker-item.up .ticker-change {
  color: var(--color-green);
}
.ticker-item.down .ticker-change {
  color: var(--color-red);
}

/* MAIN LAYOUT */
.main-layout {
  display: grid;
  grid-template-columns: 290px 1fr 1.2fr;
  flex: 1;
  overflow: hidden;
  height: calc(100vh - 116px); /* Header + Ticker height */
}

/* COLUMN PANES */
.pane {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-right: 1px solid var(--border-color);
}
.pane:last-child {
  border-right: none;
}

.pane-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(6, 9, 19, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.pane-header h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
}

.pane-header .counter {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  color: #94a3b8;
  font-family: var(--font-mono);
}

/* LEFT PANE: SECTOR HEATMAP */
.sectors-heatmap {
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  align-content: start;
}

.sector-heatmap-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.7rem 0.4rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255,255,255,0.03);
  text-align: center;
  min-height: 82px;
  user-select: none;
}

.sector-heatmap-tile[data-id="watchlist"] {
  grid-column: 1 / -1;
  flex-direction: row;
  gap: 0.6rem;
  min-height: 46px;
  justify-content: center;
}

.sector-heatmap-tile:hover {
  filter: brightness(1.18);
  border-color: rgba(255,255,255,0.18);
  transform: scale(1.03);
  z-index: 2;
}

.sector-heatmap-tile.active {
  border-color: var(--sector-color, var(--color-primary));
  box-shadow: 0 0 14px -2px var(--sector-color, var(--color-primary));
  filter: brightness(1.15);
}

.tile-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.tile-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.25;
}

.tile-change {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
}

.tile-change.up { color: var(--color-green); }
.tile-change.down { color: var(--color-red); }

/* MIDDLE PANE: STOCKS LIST */
.stocks-grid {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stock-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stock-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.2s;
}

.stock-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

.stock-card.active {
  border-color: var(--sector-color, var(--color-primary));
  background: rgba(13, 20, 38, 0.85);
}
.stock-card.active::before {
  background: var(--sector-color, var(--color-primary));
}

.stock-card-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.star-btn {
  background: transparent;
  border: none;
  color: #475569;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.star-btn:hover {
  transform: scale(1.15);
  color: var(--color-gold);
}
.star-btn.active {
  color: var(--color-gold);
  filter: drop-shadow(0 0 4px var(--color-gold-glow));
}

.stock-names {
  display: flex;
  flex-direction: column;
}
.stock-symbol {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.stock-company-name {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* SPARKLINE CANVAS */
.sparkline-container {
  width: 80px;
  height: 32px;
  margin: 0 1rem;
}
.sparkline-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.stock-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-width: 80px;
}

.stock-card-price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.stock-card-change {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 3px;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}
.stock-card.up .stock-card-change {
  color: var(--color-green);
  background: var(--color-green-glow);
}
.stock-card.down .stock-card-change {
  color: var(--color-red);
  background: var(--color-red-glow);
}

/* RIGHT PANE: NEWS FEED */
.news-feed {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: slide-up 0.4s ease-out;
}

.news-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #64748b;
}

.news-source {
  font-weight: 500;
  color: var(--color-secondary);
}

.sentiment-badge {
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.sentiment-badge.bullish {
  background: var(--color-green-glow);
  color: var(--color-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
}
.sentiment-badge.bearish {
  background: var(--color-red-glow);
  color: var(--color-red);
  border: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.2);
}
.sentiment-badge.neutral {
  background: var(--color-neutral-glow);
  color: #94a3b8;
  border: 1px solid rgba(100, 116, 139, 0.3);
}

.news-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.news-title:hover {
  color: var(--color-primary);
}

.news-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Tag buttons for related stock tickers in news card */
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.6rem;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: #cbd5e1;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.news-tag:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  color: #fff;
}
.news-tag .tag-change {
  font-size: 0.65rem;
}
.news-tag.up .tag-change {
  color: var(--color-green);
}
.news-tag.down .tag-change {
  color: var(--color-red);
}

/* MODAL SYSTEM (STOCK DETAIL & CHART) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 5, 11, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 90%;
  max-width: 780px;
  background: #090f1f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--shadow-neon-glow);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-title-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-ticker {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.modal-names {
  display: flex;
  flex-direction: column;
}
.modal-company-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.modal-sector-tag {
  font-size: 0.75rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1px;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: #94a3b8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--color-red);
}

.modal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* STOCK STATS ROW */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-label {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 600;
  color: #f1f5f9;
}
.stat-value.up {
  color: var(--color-green);
}
.stat-value.down {
  color: var(--color-red);
}

/* DETAILED CHART CANVAS */
.chart-container {
  height: 260px;
  width: 100%;
  position: relative;
  background: rgba(5, 8, 17, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.5rem;
}
.chart-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.chart-tooltip {
  position: absolute;
  background: rgba(13, 20, 38, 0.95);
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 10;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* SKELETON / LOADING SCREENS */
.skeleton-pulse {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: loading-pulse 1.5s infinite;
}

.skeleton-card {
  height: 66px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 0.75rem;
}

.skeleton-news {
  height: 120px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

/* EMPTY STATES */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #64748b;
  gap: 1rem;
}
.empty-state svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
  color: var(--color-primary);
}
.empty-state p {
  font-size: 0.85rem;
  max-width: 300px;
}

/* KEYFRAMES & ANIMATIONS */
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

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

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .main-layout {
    grid-template-columns: 250px 1fr 1fr;
  }
  .search-bar {
    width: 200px;
  }
}

@media (max-width: 900px) {
  .main-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    height: auto;
    overflow-y: auto;
  }
  .pane {
    height: auto;
    max-height: 500px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .pane:last-child {
    border-bottom: none;
    max-height: none;
  }
  .header-controls {
    gap: 0.75rem;
  }
  .market-status {
    display: none; /* Hide on smaller screens to save space */
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding: 1rem;
  }
  .header-controls {
    justify-content: space-between;
  }
  .search-bar {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Drag and Drop styling for sector heatmap tiles */
.sector-heatmap-tile[draggable="true"] {
  cursor: grab;
}
.sector-heatmap-tile[draggable="true"]:active {
  cursor: grabbing;
}
.sector-heatmap-tile.dragging {
  opacity: 0.35;
  border: 1px dashed var(--sector-color, var(--color-primary)) !important;
}
.sector-heatmap-tile.drag-over {
  box-shadow: 0 0 0 2px var(--color-primary), 0 0 14px rgba(0, 242, 254, 0.25) !important;
  transform: scale(1.05);
}
