/* Styles for the Display All Links Plugin */
.dalp-link-list {
    list-style-type: disc; /* Bulleted list */
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}

.dalp-link-item {
    margin-bottom: 5px; /* Space between links */
    padding: 5px;
    transition: background-color 0.3s ease;
}

.dalp-link-item a {
    text-decoration: none;
    color: #0073aa;
    font-size: 16px;
    display: block;
}

.dalp-link-item:hover {
    background-color: #f1f1f1; /* Light background color on hover */
}

.dalp-link-item a:hover {
    color: #005177; /* Darker color on hover */
    text-decoration: underline; /* Underline on hover */
}

.dalp-subpage-list, .dalp-post-list {
    list-style-type: circle; /* Nested bullets for subpages */
    margin-left: 20px; /* Indent for subpages and posts */
}
