#left-cyber-panel {
  position: absolute;
  top: 40px;
  left: 20px;
  width: 300px;
  background: rgba(18, 19, 32, 0.85);
  border-radius: 12px;
  border: 1.5px solid #20ffe4;
  box-shadow: 0 0 22px #20ffe4aa;
  padding: 16px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  z-index: 1000;
  overflow-y: auto;
  max-height: 90vh;
}

#left-cyber-panel h3 {
  text-align: center;
  color: #20ffe4;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #20ffe4;
}

.stat-box {
  margin-bottom: 14px;
  border-bottom: 1px solid #20ffe430;
  padding-bottom: 10px;
}

.stat-box h4 {
  margin-bottom: 8px;
  color: #e63946;
}

.stat-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.stat-box li {
  padding: 3px 0;
  font-size: 0.9em;
  display: flex;
  justify-content: space-between;
}

#type-distribution .bar {
  background: #20ffe430;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

#type-distribution .bar div {
  height: 12px;
  border-radius: 4px;
}
/* TÜM SAYFA için örnek: */
body {
  scrollbar-width: thin;              /* Firefox için: ince scrollbar */
  scrollbar-color: #20ffe4 #23242e;   /* Renk (kaydırma kolu, arkaplan) */
}

/* Webkit tabanlı tarayıcılar (Chrome, Edge, Opera, Safari) */
body::-webkit-scrollbar {
  width: 9px;
  background: #23242e;
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg,#20ffe4 20%,#e63946 90%);
  border-radius: 10px;
  box-shadow: 0 0 6px #20ffe488;
  border: 2px solid #20202c;
  transition: background .3s;
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(120deg,#e63946 10%,#20ffe4 85%);
  box-shadow: 0 0 12px #e63946cc;
}
body::-webkit-scrollbar-corner {
  background: #23242e;
}

