/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Scroll Tracker Styles */
/* Scroll Tracker Styles */
#scroll-tracker-container {
    position: fixed;
    right: 5px;
    /* Closer to edge for mobile */
    top: 50%;
    transform: translateY(-50%);
    height: 60vh;
    width: 18px;
    /* Slimmer for mobile */
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

#scroll-tracker-container.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

@media (min-width: 992px) {
    #scroll-tracker-container {
        right: 15px;
        /* Balanced for laptop/desktop */
        width: 32px;
        /* Increased from 24px */
    }
}

.scroll-track {
    position: relative;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.scroll-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    transition: height 0.1s linear;
}

.scroll-tracker-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #0f172a;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    z-index: 2;
    transition: top 0.1s linear, transform 0.2s ease;
}

@media (min-width: 992px) {
    .scroll-tracker-icon {
        width: 20px;
        /* Reduced from 24px */
        height: 20px;
        /* Reduced from 24px */
    }
}

.scroll-tracker-icon svg {
    width: 10px;
    height: 10px;
}

@media (min-width: 992px) {
    .scroll-tracker-icon svg {
        width: 12px;
        /* Reduced from 14px */
        height: 12px;
        /* Reduced from 14px */
    }
}

.scroll-tracker-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
}