/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 10 2026 | 01:40:44 */
.container {
            max-width: 400px;
            margin: 50px auto;
        }

        #searchResults {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .result-item {
            width: 500px;
            background-color: white;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }

        .result-item a {
            text-decoration: none;
            color: inherit;
        }

        .result-item img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .result-item span {
            display: block;
            font-size: 16px;
            font-weight: bold;
            color: #000000;
            margin-top: 10px;
        }

        .text-no-results {
            font-size: 2rem;
            color: #000000;
        }