



/* ------------- 
content start - score-popup-style
------------- */

#pointsButton {
            position: fixed;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: #4B4034;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        }

        #pointsPopup {
            display: none;
            position: fixed;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 20px;
            width: 300px;
            z-index: 1001;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        #pointsPopup h3 {
            margin-top: 0;
            margin-bottom: 16px;
        }

        #pointsPopup label {
            display: block;
            margin-bottom: 10px;
        }

        #pointsPopup input[type="number"] {
            width: 100%;
            padding: 5px;
            margin-bottom: 10px;
            box-sizing: border-box;
        }

        #pointsPopup button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            margin-right: 10px;
        }

        #pointsPopup .close {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 18px;
            color: #aaa;
        }

        #pointsPopup .close:hover {
            color: #000;
        }
/* ------------- 
content finish - score-popup-style
------------- */
