
        /* Style for the highlighted blog link in the sidebar */
        .widget-recent-post ul li.active-blog {
            background-color: #f8f9fa; /* A light grey highlight */
            border-left: 4px solid #FDC800; /* UPDATED to requested color */
            padding-left: 15px;
            transition: all 0.3s ease-in-out;
        }

        /* Make all blog links in the sidebar clickable */
        .widget-recent-post ul li {
            cursor: pointer;
            padding: 5px;
            border-left: 4px solid transparent; /* To prevent content shift on selection */
            transition: all 0.3s ease-in-out;
        }
        
        /* Hide main blog content by default */
        .main-blog-content {
            display: none;
        }

        /* Show the active one */
        .main-blog-content.active {
            display: block;
        }
