/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 10px;
    padding: 0;
}

h1 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 15px;
}

/* Table styles */
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;
}

/* Responsive rows */
.wonder-row {
    background-color: #e8e8e8;
}

.coins-row {
    background-color: #f9f9f9;
}

.military-row {
    background-color: red;
    color: white;
}

.civilian-row {
    background-color: lightblue;
}

.commercial-row {
    background-color: orange;
}

.science-row {
    background-color: lightgreen;
}

.guild-row {
    background-color: purple;
    color: white;
}

tfoot td {
    font-weight: bold;
    background-color: #f4f4f4;
    font-size: 0.9em;
}

/* Buttons */
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;
}

/* Responsive design */
@media (max-width: 600px) {
    h1 {
        font-size: 1.2em;
    }

    table {
        font-size: 0.8em;
    }

    th, td {
        padding: 3px;
    }

    button {
        font-size: 0.9em;
    }
}
