 .search-container {
            position: relative;
            display: inline-block;
        }
        
        .search-icon {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        .search-box {
            display: none;
            position: absolute;
            top: 40px;
            right: 0;
            background: #fff;
            padding: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        
        .search-box input {
            padding: 8px;
            width: 200px;
        }