.container {
            display: flex;
            margin: 20px auto;
            padding: 0 20px;
            flex-wrap: wrap; /* Allow wrapping for mobile view */
        }
        .main-content {
            flex: 3;
            margin-right: 20px;
        }
        .post {
            background: #fff;
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            display: flex;
        }
        .post img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            margin-right: 20px;
            border-radius: 5px;
        }
        .post-content {
            flex: 1;
        }
        .post h2 {
            margin-top: 0;
        }
       		
		.article {
            background: #fff;
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
           
        }
        .article img {
       
            width: 100%;
            height: 300px;
            object-fit: cover;
            margin-right: 20px;
            border-radius: 5px;
        }
		
		
        .article h2 {
            margin-top: 20;
        }
        .article h1 {
            font-size: 2.9em;
        }
		
		.article li{
            margin-top: 10px;
        }
        .article .meta {
            color: #666;
            font-size: 0.9em;
            margin-bottom: 10px;
        }
        .article p, dl {
            line-height: 1.8;
        }

        .article p,li,td,dl {
         
        }
		
        .read-more {
            display: inline-block;
            margin-top: 10px;
            padding: 10px 15px;
            background: #007BFF;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
        }
        .read-more:hover {
            background: #0056b3;
        }
        .sidebar {
            flex: 1;
            background: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .sidebar h3 {
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            margin-bottom: 10px;
        }
        .sidebar ul li a {
            text-decoration: none;
            color: #333;
        }
        .sidebar ul li a:hover {
            color: #007BFF;
        }
        
		table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    		}

		th, td {
			padding: 5px 10px 5px 10px;;
			text-align: left;
			border: 1px solid #ddd;
		}

		th {
			background-color: #f2f2f2;
			font-weight: bold;
			color: #333;
		}

		td {
			background-color: #fff;
			
		}

        a {
			text-decoration: none;
			
		}

		tr:nth-child(even) {
			background-color: #f9f9f9;
		}

		tr:hover {
			background-color: #e2e2e2;
		}

		caption {
			font-size: 1.4em;
			margin: 5px 0;
			font-weight: bold;
		}

        .social-share img {
            width: 32px;
            height: 32px;
            margin: 5px;
            transition: transform 0.2s ease-in-out;
        }
        
        .social-share img:hover {
            transform: scale(1.2); /* Slight zoom on hover */
        }

        /* Mobile View (max-width: 768px) */
        @media (max-width: 768px) {
            .container {
                flex-direction: column; /* Stack the content vertically */
                padding: 0 10px;
            }
            .main-content {
                margin-right: 0;
            }
            .sidebar {
                display: none; /* Hide sidebar on mobile */
            }
            .post {
                flex-direction: column; /* Stack post image and content vertically */
            }
            .post img {
                margin-right: 0;
                margin-bottom: 15px;
            }
            .article h1 {
                font-size: 2.1em;
            }

            .article h2 {
                font-size: 1.3em;
            }
            .article p,li,td,dl {
                font-size: 1em;
              }
