/**
 * Post Type List Plugin Styles
 */

.post-type-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-type-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.post-type-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0073aa;
}

.post-type-list a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-type-list a:hover {
    color: #005177;
    text-decoration: underline;
}

.no-posts-found {
    font-style: italic;
    color: #666;
}
