/* Universal Swipe Scroll Styles */

/* Base styles for swipe-scrollable elements */
.swipe-scrollable {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    
    /* Hide scrollbar for IE and Edge */
    -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.swipe-scrollable::-webkit-scrollbar {
    display: none;
}

/* Dragging state */
.swipe-scrollable.swipe-dragging {
    cursor: grabbing;
}

/* Specific styles for info-card */
.info-card.swipe-scrollable {
    /* Already has cursor: grab from universal class */
}

/* Specific styles for info-value */
.info-value.swipe-scrollable {
    /* Already has cursor: grab from universal class */
}

/* Remove any visible scrollbars from these elements */
.info-card::-webkit-scrollbar {
    display: none !important;
}

.info-value::-webkit-scrollbar {
    display: none !important;
}

