body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

table {
    border-collapse: collapse;
    width: 80%;
}

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

th {
    background-color: #f2f2f2;
}

.trickButton {
    font-size: 20px; /* Adjust if needed, but this will not affect empty circles */
    width: 40px;
    height: 40px;
    line-height: 40px; /* Helps with vertical alignment if you decide to add text later */
    border-radius: 50%; /* Creates the circle shape */
    transition: background-color 0.3s; /* Smooth background color transition */
    cursor: pointer;
    background-color: #fff; /* Default background color */
    border: 1px solid #ddd; /* Add border to distinguish empty circles */
}

.trickDescription {
    text-align: left;
    padding: 10px;
    font-weight: normal;
    background-color: #f0f0f0;
}

/* Define colors for each player */
.player1 { background-color: lightcoral; }
.player2 { background-color: lightblue; }
.player3 { background-color: lightgreen; }
.player4 { background-color: lightsalmon; }
.player5 { background-color: lightgoldenrodyellow; }
