* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }
        .navbar { background: #2c3e50; padding: 15px; display: flex; justify-content: space-between; align-items: center; color: white; }
        .search-container { position: relative; }
        input { padding: 8px; width: 250px; border-radius: 4px; border: none; outline: none; float:right; }
        
        .results-dropdown {
            position: absolute;
            top: 110%;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            display: none;
            z-index: 10;
            border-radius: 4px;
        }

        /* Link Styling */
        .result-item {
            display: block;
            padding: 10px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #eee;
        }

        .result-item:hover { background: #f4f4f4; }
