/* styles.css */

        /* Style the shop container */
        .shop-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
        }

        /* Style the dice sections */
        .shop-dice-section {
            width: 50%;
            box-sizing: border-box;
            padding: 10px;
        }

        /* Style individual dice items */
        .shop-dice-item {
            text-align: center;
            margin: 10px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #f9f9f9;
            flex: 1;
            max-width: calc(50% - 20px); /* Adjust as needed */
        }

        .shop-dice-item img {
            max-width: 100%;
            height: auto;
        }

        .shop-dice-name {
            font-weight: bold;
            margin-top: 5px;
        }

        /* Add CSS for the currency stat */
        .currency-stat {
            position: fixed;
            top: 10px;
            right: 10px;
            background-color: #222;
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            display: flex;
            align-items: center;
        }

        .currency-stat img {
            margin-right: 5px;
        }
