body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 10px;
    background-color: #f5f5f5;
}

/* Encabezados */
h1 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Labels y texto */
label, p {
    font-size: 16px;
}

/* Contenedores de botones */
#cardPane, #playerCardPane {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 12px 0;
}

/* Botones */
button {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    transition: background 0.2s;
}

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

/* Inputs (spinner, combobox) */
input, select {
    font-size: 14px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Responsive: pantallas pequeñas */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 18px;
    }

    button {
        flex: 1 0 28%; /* botones en filas de 3 */
        max-width: 90px;
    }

    #cardPane, #playerCardPane {
        gap: 4px;
    }
}