* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #657f80;
    color: #333;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #f5fafc;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ce1212;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d81919;
}

/* Scoreboard Styling */
.scoreboard {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 0 auto 20px;
}

table {
    width: 100%;
}

tfoot th {
    font-size: 18px;
    padding-top: 10px;
}

td {
    font-size: 36px;
    font-weight: bold;
    color: #db0c0c;
}

/* Button Styling */
button {
    background-color: #d81111;
    color: white;
    font-size: 18px;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #219217;
}

button:active {
    transform: scale(0.98);
}

/* Status Message Styling */
#status {
    font-size: 20px;
    font-weight: bold;
    color: #110c03;
    margin-top: 20px;
    min-height: 30px;
}

/* Button container for better alignment */
button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    button {
        width: 100%;
        max-width: 200px;
    }
}
