/** custom css for SimpleBlog **/
  @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
        
        /* PrestaShop blog compatible styles */
        .blog-content {
            max-width: 800px;
            margin: 0 auto;
            font-family: 'Lato', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .blog-content h1 {
            color: #1a4d28;
            border-bottom: 3px solid #006837;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-weight: 900;
        }
        
        .blog-content h4 {
            color: #006837;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.3em;
            font-weight: 700;
        }
        
        .blog-content h5 {
            color: #1a4d28;
            margin-top: 25px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        /* Table styling - the main fix */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .comparison-table th,
        .comparison-table td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
            vertical-align: top;
        }
        
        .comparison-table th {
            background-color: #006837;
            color: white;
            font-weight: bold;
            text-align: center;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f8fdf9;
        }
        
        .comparison-table tr:hover {
            background-color: #e8f5ea;
        }
        
        .comparison-table td strong {
            color: #006837;
        }
        
        /* Responsive table */
        @media screen and (max-width: 768px) {
            .comparison-table {
                font-size: 14px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 8px;
            }
        }
        
        /* Other content styling */
        .blog-content ul, .blog-content ol {
            margin: 15px 0;
            padding-left: 30px;
        }
        
        .blog-content li {
            margin-bottom: 8px;
        }
        
        .blog-content a {
            color: #006837;
            text-decoration: none;
        }
        
        .blog-content a:hover {
            text-decoration: underline;
            color: #004d2a;
        }
        
        .blog-content p {
            margin-bottom: 15px;
        }
        
        .toc {
            background-color: #f8fdf9;
            border-left: 4px solid #006837;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
        }
        
        .toc ul {
            margin: 0;
            padding-left: 20px;
        }
        
        .highlight-box {
            background-color: #e8f5ea;
            border: 1px solid #006837;
            padding: 15px;
            margin: 20px 0;
            border-radius: 5px;
        }