/*
Theme Name: Untapped Learning
Author: Blennd
Author URI: https://www.blennd.com/
Description: Blennder Theme Stylesheet
Version:      2.8.3
*/

.child-pages-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
}

.child-pages-list li {
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
	border:1px solid #0099dc;
}

.child-pages-list li a {
    text-decoration: none;
    color: #0099dc;
    font-weight: bold;
	
}

.child-pages-list li:hover {
    background: #0099dc;
}

.child-pages-list li:hover a {
    color: #fff;
}

