/* Set skorları tablosu */
.set-scores-table {
    width: 100%;
    max-width: 410px;
    margin: 1em auto 2em auto;
    border-collapse: collapse;
    background: #f8fbff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #1976d210;
    font-size: 1.08em;
}
.set-scores-table th, .set-scores-table td {
    border: 1px solid #b2c8e6;
    padding: 7px 12px;
    text-align: center;
}
.set-scores-table th {
    background: #1976d2;
    color: #fff;
    font-weight: bold;
}
.set-scores-table tr:nth-child(even) {
    background: #e3f0fc;
}
.set-scores-table tr:nth-child(odd) {
    background: #f8fbff;
}
.set-scores-inputs {
    display: flex;
    gap: 0.5em;
    justify-content: center;
    margin-bottom: 1em;
}
.set-scores-inputs label {
    font-weight: 500;
    color: #1976d2;
    min-width: 70px;
    text-align: right;
}
.set-scores-inputs input[type="number"] {
    width: 45px;
    padding: 4px 6px;
    border: 1.5px solid #90caf9;
    border-radius: 4px;
    font-size: 1em;
    background: #fff;
}
