/* Add vertical dividers to primary menu items */
.main-navigation ul.menu > li:not(:last-child) {
    border-right: 1px solid #ddd; /* Change #ddd to your desired color */
    padding-right: 10px; /* Adjust spacing to the right of the divider */
    margin-right: 10px; /* Adjust spacing to the left of the divider */
}

/* Ensure the last menu item doesn't have a divider and has correct alignment */
.main-navigation ul.menu > li:last-child {
    padding-left: 10px; /* Adjust padding to align with others if needed */
}

/* Adjust padding for the links themselves for better vertical alignment (optional) */
.main-navigation ul.menu > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
}

/*.main-navigation .menu-item-search {
    display: none !important;
}
.search-form {
    display: none !important;
}*/

/* paragraphs too wide on laptop */
.entry-content, .wp-block-post-content {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}