 #searchInput {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            box-sizing: border-box;
            font-size: 1rem;
        }
        .search-results-dropdown {
            display: none;
          
            background-color: #fff;
            min-width: 88%;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 6px 6px;
            z-index: 1000;
            max-height: 550px; /* Increased height for logo */
            overflow-y: auto;
        }
        .search-results-dropdown a {
            color: #333;
            padding: 12px 15px;
            text-decoration: none;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid #eee;
            gap: 12px;
        }
        .search-results-dropdown a:hover {
            background-color: #fff;
        }
        .result-thumbnail {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 4px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .result-text-content {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            overflow: hidden;
        }
        .result-title {
            font-weight: bold;
            font-size: .85rem;
            margin-bottom: 4px;
            color: #0056b3;
        }
        .result-snippet {
            font-size: 0.85rem;
            color: #555;
            line-height: 1.4;
        }
        .no-results {
            padding: 20px 15px;
            color: #777;
            text-align: center;
        }
        .pagination-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            border-top: 1px solid #eee;
            background-color: #f9f9f9;
        }
        .pagination-controls button {
            padding: 8px 16px;
            border: 1px solid #ccc;
            background-color: #fff;
            border-radius: 4px;
            cursor: pointer;
        }
        .pagination-controls button:disabled {
            cursor: not-allowed;
            opacity: 0.5;
        }
        .page-info {
            font-size: 0.9rem;
            color: #555;
        }
        .dropdown-logo-footer {
            padding: 10px;
            text-align: center;
            border-top: 1px solid #eee;
        }
        .dropdown-logo-footer img {
            max-height: 100%;
            max-width: 100%;
            display: inline-block;
        }