/** 
 * toneus_subpages.css
 **/

.tsp_category_list {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
    
}

/* Block-style list items */
.tsp_category_list li {
    display: block;
    padding: 20px; /* Increase padding for better spacing */
    margin-bottom: 10px; /* Add space between items */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.tsp_category_list img {
    width: 64px;
}
/* Links inside list items */
.tsp_category_list li a {
    color: inherit; /* Use the same text color as the item */
    text-decoration: none;
    font-weight: bold;
}

/* Hover effect */
.tsp_category_list li:hover {
    opacity: 0.9;
}

/* Different background colors for levels */
.tsp_level_1 {
    
    background: #f8f9fa; /* Light gray background */

}

.tsp_level_2 {
    background: #e8e9ea; 

    margin-left: 25%; /* Indent child items */
}

.tsp_level_3 {
    
    background: #d8d9da;
    margin-left: 50%; /* Further indent */
}