.image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }

        .image-item {
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 15px;
            text-align: center;
            overflow: hidden; /* Prevent content from overflowing */
        }

        .image-item img, .image-placeholder {
            width: 100%; /* Use full container width */
            height: auto;
            display: block;
            margin: 0 auto 15px;
            border-radius: 4px;
            object-fit: contain; /* Ensure full image is visible */
            background-color: white; /* White background for images */
        }

        /* For actual images, allow them to use more space */
        .image-item img {
            max-height: 500px; /* Allow taller images */
            object-fit: scale-down; /* Scale down but maintain aspect ratio */
        }

        .image-placeholder {
            background-color: #e9ecef;
            border: 1px dashed #ced4da;
            padding: 60px 20px;
            margin-bottom: 15px;
            min-height: 250px; /* Increased minimum height for consistency */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .caption {
            font-style: italic;
            color: #666;
            font-size: 0.85em;
            margin: 0;
            padding: 0;
        }

        /* Responsive grid for images */
        @media (max-width: 768px) {
            .image-gallery {
                grid-template-columns: 1fr;
            }
        }

        /* Component list styling */
        .component-list {
            margin: 20px 0;
        }

        .component-group {
            margin-bottom: 30px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 4px;
            border-left: 3px solid #006162;
        }

        .component-group-title {
            color: #006162;
            font-size: 1.1em;
            margin-top: 0;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .component-group ul {
            margin: 0;
            padding-left: 20px;
        }

        .component-group li {
            margin-bottom: 6px;
            padding: 3px 0;
        }
