/* Add to existing mobile.css */
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Enhanced touch feedback */
.mobile-touch-feedback {
    transform: translateZ(0);
    transition: transform 0.15s ease;
}

.mobile-touch-feedback:active {
    transform: scale(0.96);
}

/* Optimized horizontal scrolling */
.scroll-snap-x {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-snap-x > * {
    scroll-snap-align: start;
}

/* Improved tap targets */
@media (max-width: 640px) {
    .odds-book-container {
        min-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .odds-display {
        min-height: 44px;
    }

    .mobile-touch-target {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
