        #blog-css {
            background-color: #f0f0f0;
            color: #333;
            padding-bottom: 2rem;
        }

        #blog-css header {
            background-color: #dcdcdc;
            color: #222;
            padding: 1rem 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        #blog-css header h1 {
            font-family: 'Arial', sans-serif;
            font-size: 2rem;
            font-weight: bold;
            padding-left: 10px;
            padding-right: 10px;
        }

        #blog-css nav a {
            color: #555;
            margin: 0 15px;
            text-decoration: none;
        }

        #blog-css nav a:hover {
            text-decoration: underline;
            color: #333;
        }

        #blog-css .dropdown-menu a:hover {
            color: #333;
        }

        #blog-css .dropdown-menu a {
            color: #555;
        }

        #blog-css .dropdown-menu {
            padding: 0.5rem 1rem; /* Add padding to the dropdown menu */
        }

        #blog-css .content-section {
            padding: 2rem;
        }

        #blog-css .post-title {
            font-size: 1.5rem;
            color: #444;
            margin-bottom: 1rem;
        }

        #blog-css .post-content {
            color: #444;
        }

        #blog-css .sidebar {
            background-color: #eaeaea;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        #blog-css .sidebar h4 {
            font-size: 1.25rem;
            color: #333;
        }

        #blog-css .sidebar ul li {
            margin-bottom: 0.5rem;
        }

        #blog-css .sidebar a {
            color: #555;
            text-decoration: none;
        }

        #blog-css .sidebar a:hover {
            text-decoration: underline;
            color: #333;
        }

        #blog-css .card {
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        #blog-css .card-title {
            color: #444;
        }

        #blog-css .card-text {
            color: #444;
        }

        #blog-css .btn-primary {
            background-color: #444;
            color: #fff;
            border: none;
        }

        #blog-css .btn-primary:hover {
            background-color: #333;
        }

        #blog-css .date {
            font-size: 0.9rem;
            color: #777;
        }

        @media screen and (max-width: 768px) {
            #blog-css header h1 {
            font-size: 1.7rem;
            }
        }

        @media screen and (max-width: 480px) {
            #blog-css header h1 {
            font-size: 1.5rem;
            }
        }