body {
    font-family: Arial, sans-serif;
    margin: 10px;
    padding: 0;
}

h1 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow-x: auto;
}

th, td {
    border: 1px solid #ccc;
    padding: 5px;
    text-align: center;
}

th {
    background-color: #f4f4f4;
    font-size: 0.9em;
}

td {
    font-size: 0.8em;
}

.player-name {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-size: 0.9em;
    background-color: transparent;
}

input[type="number"] {
    width: 90%;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    font-size: 0.8em;
}

tfoot td {
    font-weight: bold;
    background-color: #f4f4f4;
    font-size: 0.9em;
}

button {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.2em;
    }

    table {
        font-size: 0.8em;
    }

    th, td {
        padding: 3px;
    }

    button {
        font-size: 0.9em;
    }
}
