body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.wallet {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
    font-size: 18px;
}

.wallet #walletIcon {
    margin-right: 5px;
}

.slot-machine {
    text-align: center;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 10px;
    justify-content: center;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

.player-entry {
    text-align: center;
    margin-bottom: 20px;
}

.player-entry input[type="text"] {
    padding: 8px;
    font-size: 16px;
    margin-right: 10px;
}

.scoreboard {
    text-align: center;
}

.scoreboard h2 {
    margin-bottom: 10px;
}

#scoreList {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
}
