/* Estilos generales */
body {
    font-family: Angkor;    ;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    background-image: url('/img/fonnature.jpg');
}

.container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

button {
    padding: 10px 20px;
    background-color: #1f7612;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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

/* Estilos para las tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

table th {
    background-color: #1f7612;
    color: #fff;
}

table tr:nth-child(even) {
    background-color: rgb(197, 227, 227);
}

/* Estilos específicos para los contenedores de puntajes */
#contenedorPuntajes, #contenedorPuntajesPorAlias {
    display: none;
    margin-top: 20px;
}

#contenedorPuntajes p, #contenedorPuntajesPorAlias p {
    font-weight: bold;
    color: #333;
}