﻿.scrollable-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    scroll-behavior: smooth; /* Smooth scrolling */
    width: 100%; /* Control the size of the scrollable area */
    cursor: grab;
}

    .scrollable-container:active {
        cursor: grabbing;
    }

    .scrollable-container::-webkit-scrollbar {
        height: 8px;
    }

    .scrollable-container::-webkit-scrollbar-thumb {
        background-color: #1976d2;
        border-radius: 10px;
    }

.mud-button {
    display: inline-block;
    white-space: normal; /* Allow wrapping */
    text-align: center;
    padding: 8px 16px;
    margin: 5px;
    min-width: 200px; /* Minimum width for buttons */
    width: auto; /* Auto width for flexibility */
}

.scroll-button-left {
    margin-right: 15px
}

.scroll-button-right {
    margin-left: 15px
}

/* Media query for mobile devices */

@media (max-width: 768px) {

    .scroll-buttons {
        display: none; /* Show the scroll buttons on mobile devices */
    }
}


@media (min-width: 769px) {

    .scroll-buttons {
        display: block; /* Hide the scroll buttons on larger screens */
    }
}