
        /* Simple Colorful Post Grid Styles */
        .scpg-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .scpg-filters {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .scpg-filter-button {
            background-color: #f8f8f8;
            border: none;
            color: #333;
            padding: 10px 20px;
            margin: 5px;
            cursor: pointer;
            border-radius: 50px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .scpg-filter-button.active {
            background-color: #ff4d94;
            color: white;
        }
        
        .scpg-filter-button:hover {
            background-color: #ff80ab;
            color: white;
        }
        
        /* Masonry Grid Layout */
        .scpg-grid {
            width: 100%;
            margin: 0 auto;
        }
        
        .scpg-item {
            width: 31.333%;
            margin: 0 1% 20px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
        .scpg-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .scpg-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        
        /* Color indicator at bottom of images */
        .scpg-item .color-indicator {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 5px;
            transition: all 0.3s ease;
        }
        
        .scpg-item:hover .color-indicator {
            height: 8px;
        }
        
        .scpg-cat-color-1 .color-indicator {
            background-color: #ff4d94;
        }
        
        .scpg-cat-color-2 .color-indicator {
            background-color: #ff9800;
        }
        
        .scpg-cat-color-3 .color-indicator {
            background-color: #4caf50;
        }
        
        .scpg-cat-color-4 .color-indicator {
            background-color: #2196f3;
        }
        
        .scpg-cat-color-5 .color-indicator {
            background-color: #9c27b0;
        }
        
        .scpg-pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .scpg-pagination .page-numbers {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 5px;
            background-color: #f8f8f8;
            color: #333;
            border-radius: 50%;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .scpg-pagination .page-numbers.current,
        .scpg-pagination .page-numbers:hover {
            background-color: #ff4d94;
            color: white;
        }
        
        /* Responsive styles */
        @media screen and (max-width: 768px) {
            .scpg-item {
                width: 48%;
                margin: 0 1% 15px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .scpg-item {
                width: 98%;
                margin: 0 1% 15px;
            }
        }
        