/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Cabecera */
header {
    background-color: #004466;
    color: white;
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filtros {
    margin-top: 10px;
}

.filtros label {
    margin: 0 10px;
    font-weight: bold;
}

.filtros select, .filtros button {
    padding: 5px 10px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
}

.filtros select {
    background-color: white;
}

.filtros button {
    background-color: #0088cc;
    color: white;
    cursor: pointer;
}

.filtros button:hover {
    background-color: #005577;
}

/* Diseño principal */
main {
    display: flex;
    height: calc(100vh - 80px); /* Resta la altura de la cabecera */
}

/* Columna izquierda (lista) */
#listaCientificas {
    width: 30%;
    background-color: #f4f4f4;
    padding: 20px;
    overflow-y: auto;
}

#listaCientificas h2 {
    margin-bottom: 15px;
    text-align: center;
}

#resultado {
    list-style: none;
}

#resultado li {
    margin: 10px 0;
}

#resultado a {
    text-decoration: none;
    color: #004466;
    font-weight: bold;
    display: block;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s;
}

#resultado a:hover {
    background-color: #d0eaff;
}

/* Columna derecha (detalle) */
#detalleCientifica {
    width: 70%;
    padding: 20px;
    overflow-y: auto;
}

#detalleCientifica h2 {
    text-align: center;
    margin-bottom: 15px;
}

#detalleCientifica h3 {
    text-align: center;
    margin-bottom: 12px;
    color: blue;
}

#detalleCientifica h4 {
    color: green;
    text-align: center;
}

#detalleCientifica p {
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: justify;
}

#infoCientifica {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
}

.bio {
	font-weight: bold;
	color: blue;
}
