.handValue {
    padding: 0.5rem 1rem;
    border: 2px solid oklch(var(--s));
    border-radius: 10px;
    font-size: 1.3rem;
}

#unifiedScoreTable {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

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

#unifiedScoreTable th {
    background-color: #f5f5f5;
    font-weight: bold;
}

#unifiedScoreTable tr:nth-child(even) {
    background-color: #f9f9f9;
}

#unifiedScoreTable tr:hover {
    background-color: #f0f0f0;
}

#unifiedScoreTable th:first-child,
#unifiedScoreTable td:first-child {
    font-weight: bold;
    text-align: center;
}

.body {
    text-align: center;
    font-family: 'Zilla Slab', serif;
    /* Apply Zilla Slab to the entire body */

}

.container {
    max-width: 800px;
    /* Limit container width for better readability */
    margin: 4rem auto;
    /* Center the container horizontally */

}


#playerContainers {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

}

.playerBox {
    margin: 5px 5px 5px 5px;
}

.card-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.controls {
    margin: 3rem auto auto;

}

.playerName {
    padding: 0.5rem;
    margin: 1rem auto auto;
}

.inputs {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: auto;
    padding: 1rem;
    justify-items: flex-end;
    column-gap: 1rem;
}

/*noinspection ALL*/
#finalScores {
    display: none;
    background-color: oklch(var(--sc));
    padding: 1rem;
    margin: auto;
    max-width: 50%;
    max-height: 50%;
}

dialog {
    padding: 2rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);


}

img {
    max-width: 10%;
    height: auto;
}