#MasterMint{
width: 600px;
margin:0 auto;

 color: #fff;
}
        .MasterMint-instructions {
            font-size: 0.9rem;
            margin-bottom: 20px;
            text-align: center;
            max-width: 500px;
            color: #2c3e50;
            margin:0 auto;
        }

        #MasterMint-game-container {
            background-color: #34495e;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            width: 360px;
            margin:0 auto;
        }

        #MasterMint-board {
            display: flex;
            flex-direction: column-reverse;
            gap: 10px;
            margin:0 0 20px 0;
            max-height: 400px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .MasterMint-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(0,0,0,0.2);
            padding: 8px;
            border-radius: 5px;
        }

        .MasterMint-row-slots {
            display: flex;
            gap: 8px;
        }

        .MasterMint-peg {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #7f8c8d;
            border: 2px solid #1a252f;
            box-shadow: inset 0 3px 5px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: transform 0.1s;
        }

        .peg:active {
            transform: scale(0.9);
        }

        /* Χρώματα Παιχνιδιού */
        .MasterMint-peg.red    { background-color: #e74c3c; }
        .MasterMint-peg.blue   { background-color: #3498db; }
        .MasterMint-peg.green  { background-color: #2ecc71; }
        .MasterMint-peg.yellow { background-color: #f1c40f; }
        .MasterMint-peg.purple { background-color: #9b59b6; }
        .MasterMint-peg.orange { background-color: #e67e22; }

        .MasterMint-hints {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4px;
            width: 34px;
            height: 34px;
            align-content: center;
        }

        .MasterMint-hint-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #4a5768;
            border: 1px solid #1a252f;
        }

        .MasterMint-hint-dot.black { background-color: #000000; }
        .MasterMint-hint-dot.white { background-color: #ffffff; }

        #MasterMint-controls {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .MasterMint-current-guess-row {
            display: flex;
            justify-content: center;
            gap: 12px;
            background: rgba(255,255,255,0.1);
            padding: 12px;
            border-radius: 5px;
        }

        .MasterMint-btn {
            background-color: #2ecc71;
            color: white;
            border: none;
            padding: 12px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .MasterMint-btn:hover { background-color: #27ae60; }
        .MasterMint-btn:disabled {
            background-color: #7f8c8d;
            cursor: not-allowed;
        }

        #MasterMint-message {
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
            min-height: 28px;
            margin-top: 15px;
        }
