body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

fieldset {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
}

legend {
    font-weight: bold;
    font-size: 1.2em;
}

label {
    display: inline-block;
    width: 150px;
}

input[type="text"],
input[type="number"],
input[type="date"],
select {
    padding: 5px;
    margin-bottom: 10px;
    width: 200px;
}

input[type="submit"] {
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

button {
    padding: 5px 10px;
    background-color: #f44336;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #e53935;
}

/* Specific styles for player profiles table */
#playerProfilesTable th, #playerProfilesTable td {
    border: none;
    text-align: left;
}

#playerProfilesTable {
    width: 100%;
    border-collapse: collapse;
}

#playerProfilesTable th {
    border-bottom: 1px solid #ddd;
}

/* Specific styles for match input fields */
input.team1-input {
    background-color: #ADD8E6; /* Light blue */
    width: 60px;
}

input.team2-input {
    background-color: #FFB6C1; /* Light red/pink */
    width: 60px;
}