        html { scroll-behavior: smooth; }
      
	  body { font-family: 'Segoe UI', Tahoma, sans-serif; margin: 0; padding: 20px; background: #fff; color: #333; }
        
        .header-wrapper {
			background: lightblue;
            position: sticky;
            top: 0;
            background: white;
            padding: 10px 0 20px 0;
            border-bottom: 2px solid #f0f0f0;
            z-index: 1000;
        }

		/*  Search bar */
        .search-row { 
		background: tan;
		display: flex; 
		gap: 10px; 
		max-width: 800px; 
		align-items: center; 
		}

        #searchInput {
            flex-grow: 1;
            padding: 12px;
            font-size: 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            outline: none;
        }

        #clearBtn {
            padding: 12px 20px;
            background-color: #f8f9fa;
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
        }

        #photoGallery {
            margin-top: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }

        .search-result-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #f0f0f0;
            border-radius: 10px;
            background: #fff;
        }

        .result-thumb {
            width: 200px;
            height: auto;
            border-radius: 6px;
            border: 1px solid #ddd;
        }

        .result-info { flex: 1; }
        .result-info h3 { margin: 0 0 8px 0; font-size: 1.1em; }
        
        .btn-group { display: flex; gap: 10px; margin-top: 10px; }

        .jump-btn {
            display: inline-block;
            padding: 8px 15px;
            background-color: #007bff;
            color: white !important;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 14px;
        }

        .copy-btn {
            padding: 8px 15px;
            background-color: #f0f0f0;
            border: 1px solid #ddd;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
        }

        .close-x {
            font-size: 24px;
            font-weight: bold;
            color: #ccc;
            cursor: pointer;
            line-height: 1;
        }

