/* ===== Scrollbar (Webkit: Chrome, Edge, Safari) ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0f1117; /* tło strony */
}

::-webkit-scrollbar-thumb {
  background: #2b2f3a;
  border-radius: 10px;
  border: 2px solid #0f1117;
}

::-webkit-scrollbar-thumb:hover {
  background: #5865f2; /* Discord blue accent */
}

/* ===== Firefox ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: #2b2f3a #0f1117;
}

.tooltip {
    position: relative;
}

.tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(24,24,27,0.95);
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 50;
}