.contenido {
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif
}


/** COMIENZAN LOS ESTILOS DE LA CABECERA */

.cabecera {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
    background-color: #00294e;
    padding-bottom: 20px;
    padding-top: 1px;
    color: white;
    width: 100%;
}

.cabecera h1 {
    text-align: center;
    background-color: #00294e;
    color: white;
    margin: 0;
    padding: 15px 0;
}

nav a {
    text-decoration: none;
    color: white;
    border: 0.2px solid white;
    border-radius: 50px;
    margin: 5px;
    padding: 2px 5px;
    justify-content: center;

}

nav a:hover {
    background-color: #ede8d0;
    color: black;
    transition: all 0.4s ease;
    border: 0.2px solid #ede8d0;
}

/* SE ACABAN LOS ESTILOS DE LA CABECERA */

/* SE COMIENZAN ESTILOS GENERALES DE FORMULARIOS*/
.formularioEleccionCalculadora {
    margin-bottom: 10px;
}

.eleccionCalculadora {
    margin-bottom: 5px;
}

.comentarioPequeno {
    width: 100%;
    font-size: 13px;
    color: rgb(88, 88, 88)
}

.contenidoCalculadora h4 {
    margin-top: 5px;
    margin-bottom: 5px;
}

form input,
form button,
select {
    border-radius: 5px;
    border: 0.5px solid black;
    text-align: center;
    background-color: transparent;
}

form input {
    padding: 2.5px;

}

/* SE ACABAN LOS ESTILOS GENERALES DE FORMULARIOS */










.contenidoCalculadora,
#mensajeError,
.contenedorFormulas {
    display: none;
}


#mensajeError {
    color: #d32f2f;
    background-color: #ffebee;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    border: 1px solid #ef5350;
    font-size: 14px;
}