/* Chart.js Scroll Indicators */
.chart-scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #10b981;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.2s ease;
    color: #10b981;
    
    /* Prevent text selection on click/double-click */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    /* Prevent tap highlighting on mobile */
    -webkit-tap-highlight-color: transparent;
}

.chart-scroll-indicator:hover {
    background: #10b981;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.chart-scroll-indicator:active {
    transform: translateY(-50%) scale(1.05);
}

.chart-scroll-left {
    left: 10px;
}

.chart-scroll-right {
    right: 10px;
}

.chart-scroll-indicator svg {
    width: 20px;
    height: 20px;
    pointer-events: none; /* Prevent SVG from interfering with clicks */
}

