::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-indicator {
    position: fixed;
    top: 120px;
    right: 15px;
    width: 4px;
    height: calc(100vh - 240px);
    background: rgba(15, 30, 45, 0.5);
    border-radius: 2px;
    border: 0.5px solid #333;
    z-index: 10000;
    transition: opacity 0.3s;
}

.scroll-indicator-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #0099ff88, #00e1ff88);
    border-radius: 2px;
    transition: height 0.2s, background 0.2s;
    min-height: 10px;
}

body:hover .scroll-indicator,
.scroll-indicator:hover {
    opacity: 1;
}

@media (max-width: 500px) {
    .scroll-indicator {
        opacity: 0 !important;
    }
}
