#gameCanvas {
    border: 1px solid white;
    background: black;
    display: none;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #333;
    color: white;
}

#findGame, #pvpGame, button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
}

button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

#status {
    font-size: 20px;
    margin: 20px;
}

#playerList {
    background: #444;
    border-radius: 8px;
    padding: 15px;
    margin: 15px;
    width: 80%;
    max-width: 500px;
}

#playerList h3 {
    text-align: center;
    margin-top: 0;
}

#playerList ul {
    list-style-type: none;
    padding: 0;
}

#playerList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin: 5px 0;
    background: #555;
    border-radius: 4px;
}

#pvpRequestArea {
    background: #444;
    border-radius: 8px;
    padding: 15px;
    margin: 15px;
    width: 80%;
    max-width: 500px;
}

.pvp-request {
    text-align: center;
}

.pvp-request p {
    margin-bottom: 15px;
}

#acceptPvp {
    background: #4CAF50;
}

#declinePvp {
    background: #f44336;
}