.jumplist {
    border-bottom: 1px solid #789993;
    border-top: 1px solid #789993;
    padding: 5px 0;
    text-align: center !important; /* Center the text inside the jumplist container */
}

.jumplist a {
    /*text-decoration: none;*/
    display: inline-block; /* Ensure links are displayed inline */
    margin: 0 5px; /* Adds horizontal space between links */
}



.separator {
    color: #789993;
    margin: 0 5px; /* Add space around the separator */
    text-decoration: none; /* Ensure the separator is not underlined */
}

/* Responsive Styles */
@media (max-width: 600px) { /* Adjust max-width as needed */
    .jumplist a {
        display: block; /* Stack the items vertically */
        margin: 10px 0; /* Add vertical spacing between links */
    }

    .separator {
        display: none; /* Remove separator on smaller screens */
    }
}
