/* Increased the menu width to be able to display all items */
.main-menu-container {
    max-width: 1200px; /* Changed from 1140px */
    margin: auto;
    padding: 0 22px;
    position: relative;
}

/* Increased the blog page width to match the menu width */
.site-container {
    max-width: 1200px; /* Changed from 1140px */
    margin: 0 auto;
    padding: 0 22px;
    position: relative;
}

/* Added some white space between the menu and the first bottom item */
.main-navigation {
    clear: both;
    display: block;
    height: 58px;
    width: 100%;
    margin-bottom: 35px; /* Added */
    background-color: #3D72A4;
}

/* Reduced the size of the thumbnail of the image in the post list */
.blog-post-side-layout .post-loop-images {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    width: 10%; /* Changed from 30% */
    height: 75px; /* Added */
    float: left;
    overflow: hidden;
}

/* Increased the text area to compensate for the reduction of the thumbnail size */
.blog-post-side-layout .post-loop-content {
    width: 89%; /* Changed from 68% */
    padding: 0 0 8px 0;
    float: right;
}

/* Changed the color of the menu background */
.site-footer-bottom-bar {
    background-color: #3D72A4; /* Changed from #006489 */
}

/* Remove the shadow from the box icon */
.blog-post-side-layout .post-loop-images {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); */ /* Removed */
    width: 10%;
    height: 75px;
    float: left;
    overflow: hidden;
}

/* Changed the color of the button */
input[type="button"]
{
    background-color: #3D72A4; /* Changed from #006489 */
}