/* Tipografía */
@font-face {
    font-family: "Montserrat";
    src: url("fontes/Montserrat-VariableFont_wght.ttf");
}

/* Botones y menú principal */
button{
    background-color: #4CA452;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Tablas */
#content{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50vh;
    align-content: center;
    justify-content: center;

}

#content > a {
    width: 40px;
    margin-left: 185px;
}

table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    height: 60px;
    background-color: #4CA452;
    color: #fff;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

td{
    height: 50px;
}

/* Sombreado Alterno */
tr:nth-child(even) {
    background-color: #e8f5e9;
    /* Verde claro */
}

tr:nth-child(odd) {
    background-color: #f1f8e9;
    /* Beige */
}
