/* Container to hold both lists side by side and centered */
.species-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.plant-specie-list {
    display: flex;
    flex-direction: column;
    border: 10px groove navy;
    padding: 10px;
}

.animal-specie-list {
    display: flex;
    flex-direction: column;
    border: 10px groove navy;
    padding: 10px;
}

p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}